Reputation: 9612
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.
Firewall configuration:
UFW Status:
Upvotes: 1
Views: 201
Reputation: 2580
I fixed problem to use this command. If you had been created container using 7474 and 7687 ports you will have an error "port is already allocated". So yo should delete this container.
Command :
docker run --name neo4j -p7474:7474 -p7687:7687 -d -v $HOME/neo4j/data:/data -v $HOME/neo4j/logs:/logs -v $HOME/neo4j/import:/var/lib/neo4j/import -v $HOME/neo4j/plugins:/plugins neo4j:latest
Upvotes: 0
Reputation: 20185
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
Upvotes: 0