laravelarangodbarangodb-php

Not able to access to ArangoDB web interface


I've installed ArangoDB on an Ubuntu server. I can connect with arangosh but not able to connect from the web interface.

Tried so many things like in conf files :

tcp://0.0.0.0:8529

tcp://my.server.ipaddress:8529

tcp://myservern.ndd:8529

Always getting : ERR_CONNECTION_TIMED_OUT


Solution

  • The reason is the tcp://. Its intended if you use arangosh as a client to ArangoDB or via a driver.

    If you use your browser, you should use regular http:// - so in your case:

    http://my.server.ip.address:8529/
    

    or...

    http://myserver.ndd:8529
    

    You should also make sure that no firewall is blocking the connection (e.g. port not open), and revalidate

    netstat -alnpt
    

    that arangod really listens to 0.0.0.0:8529