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?
Asked
Active
Viewed 8,402 times
4

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 Answers
6
Specify the port in your local.ini
config:
[httpd]
port = 5984

TheDude
- 3,796
- 2
- 28
- 51
-
-
Did you restart Couch? You can even just try to restart the VM using vagrant. Also, is your config file in the same directory as `default.ini`? – TheDude Feb 14 '14 at 18:39