Could not access CouchDB Web GUI (OSX)

Hello, I just installed couchDB on my MacBook Pro.

I installed it using MacPort

sudo port install couchdb
sudo port upgrade couchdb
sudo launchctl load -w /opt/local/Library/LaunchDaemons/org.apache.couchdb.plist
org.apache.couchdb: Already loaded

But I can not access the web GUI http: // localhost: 5984 / _utils / index.html

What should I do to have access to the web interface?

thank

+3
source share
2 answers

I have the same problem after upgrading to MacPorts 1.9.2.

There is a problem with erlang from Mac ports and couchdb . To fix this:

1. Install erlang (optional - you can save it as inactive)

sudo port uninstall erlang

2.Install erlang with option +ssl

sudo port install erlang +ssl

couchdb:) .

+4

All Articles