Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to connect to remote couchdb database

Tags:

python

couchdb

I am new in couchdb. I am running a python code in a server. This code stores data in a couchdb database. I want it to store the database in my computer. My code is very simple and the following one:

server = Server('http://125.151.58.68:5984/')
db = server['dnsrecords']

When I run this code , I get the following error messages:

File "dblookup.py", line 12, in main
    db = server['dnsrecords']
  File "/usr/local/lib/python2.6/dist-packages/CouchDB-0.8-py2.6.egg/couchdb/client.py", line 137, in __getitem__
  File "/usr/local/lib/python2.6/dist-packages/CouchDB-0.8-py2.6.egg/couchdb/http.py", line 377, in head
  File "/usr/local/lib/python2.6/dist-packages/CouchDB-0.8-py2.6.egg/couchdb/http.py", line 419, in _request
  File "/usr/local/lib/python2.6/dist-packages/CouchDB-0.8-py2.6.egg/couchdb/http.py", line 239, in request
  File "/usr/local/lib/python2.6/dist-packages/CouchDB-0.8-py2.6.egg/couchdb/http.py", line 205, in _try_request_with_retries

socket.error: [Errno 111] Connection refused
like image 246
Shnkc Avatar asked Sep 16 '25 12:09

Shnkc


1 Answers

Run couchdb -c to see where your config files are, and then edit the local.ini config file and uncomment and change the bind_address value to 0.0.0.0 so it's bound to all your IPs.

like image 95
smathy Avatar answered Sep 18 '25 08:09

smathy