Hi everyone,
I'm trying to setup 2 nodes with BigCouch. I read some guides and:
- Install Ubuntu 12.04 on 2 VMWare machines (use NAT connection)
- Install CouchDB 1.4 & BigCouch
- Set FQDN on /etc/hostname on 2 machines (slave2.test.com, slave3.test.com)
- Set IP range on /etc/hotsts
- 192.168.61.128 slave2.test.com slave2
- 192.168.61.129 slave3.test.com slave3
- Edit /opt/bigcouch/etc/vm.args:
Then I try:
- curl localhost:5984 -> {"couchdb":"Welcome","version":"1.1.1","bigcouch":"0.4.2"}
- curl localhost:5986 -> {"couchdb":"Welcome","version":"1.1.1"}
- curl slave2.test.com:5984 ->{"couchdb":"Welcome","version":"1.1.1","bigcouch":"0.4.2"}
- curl slave2.test.com:5986 -> curl: (7) couldn't connect to host
- curl -X PUT http://slave2.test.com:5986/nodes/bigcouch@slave3.test.com -d {} -> curl: (7) couldn't connect to host
Can you give some advices to make BigCouch working? Thank you very much.