4

When I start couchDB I have it running on http://127.0.0.1:5984/. I have another program I need to run on the same port, so I want to change the couchDB one to something else. Any ideas?

Anonymous
  • 171
  • 1
  • 2
  • 9
  • With a quick Google search you can find [material](http://docs.couchdb.org/en/1.4.x/configuring.html#virtual-hosts) about CouchDB config files and Virtual Hosts, which allow to specify your desired port. – mathielo Feb 14 '14 at 17:13
  • So I'll need to run a virtual host? @mathielo – Anonymous Feb 14 '14 at 17:19

1 Answers1

6

Specify the port in your local.ini config:

[httpd]
port = 5984
TheDude
  • 3,796
  • 2
  • 28
  • 51