Disclaimer:
I am very new to Ubuntu. I have little linux experience, but I might be missing something simple.
Description:
I have just purchased a Droplet from Digitalocean
and installed Ubuntu on it. I am attempting to use CouchDB 1.6.1
. I have followed both of these guides, Guide #1 and Guide #2 which has proved fruitful in installing CouchDb
. This is evidenced by the fact that a curl localhost:5984
on the droplet produces:
{"couchdb":"Welcome","uuid":"**id**","version":"1.6.1", "vendor":
{"version":"1.6.1","name":"The Apache Software Foundation"}
}
I am edited both the default.ini
and local.ini
to listen to all incoming requests from bind_address: 0.0.0.0
which I have read that accepts any ip
.
To prove that, I run this command:
netstat -tapen | grep ":5984"
Which produces:
tcp 0 0 127.0.0.1:5984 0.0.0.0:* LISTEN 0 455066 8525/ssh
Problem:
When I navigate to my_droplet_ip:5984/_utils
nothing shows up in the browser with Chrome returning a ERR_CONNECTION_REFUSED
.
Does anyone know what I am doing wrong?