1

I'm running a brand new droplet in digital ocean running on Ubuntu 18.04.3 (LTS) x64, neo4j status is active and remote interface available on port 7474.

  • Using lynx via ssh to browse to localhost:7474 works, neo4j is alive and active.
  • Pinging works
  • Firewall asigned to allow all traffic but also specifically those ports
  • Browsing to the ip address on any port does not work
  • Used ufw to manually add port 80, 443, 7474 to allow access
  • Cannot connect via browser to the droplet on any port

Firewall configuration:

enter image description here

UFW Status:

enter image description here

SebastianG
  • 8,563
  • 8
  • 47
  • 111
  • **DO NOT post images of code, data, error messages, etc.** - copy or type the text into the question. [ask] – Rob Apr 05 '20 at 10:26

1 Answers1

0

Can you make sure the following line in your neo4j.conf file is uncommented :

# With default configuration Neo4j only accepts local connections.
# To accept non-local connections, uncomment this line:
dbms.connectors.default_listen_address=0.0.0.0
Christophe Willemsen
  • 19,399
  • 2
  • 29
  • 36
  • Hi -- forgot to mention this, I have indeed done this to my neo4j.conf file before posting here, as I have seen that mentioned on another forum, didn't help :( – SebastianG Apr 04 '20 at 19:04