Access the Web UI
To access the web-based user interface securely, create an SSH tunnel.
From your local machine:
ssh -L 7474:localhost:7474 -L 7687:localhost:7687 root@<server-ip>
Then visit: http://localhost:7474
It might take a few minutes to come up.
Login with default credentials:
- Username:
neo4j - Password:
neo4j
You will be prompted to change the password upon first login.
Protocol Endpoints
- Bolt:
bolt://localhost:7687 - Neo4j URI:
neo4j://localhost:7687
Connect using Cypher Shell
cypher-shell -a 'neo4j://localhost:7687'
Important Directories
- Configuration:
/etc/neo4j/ - Database files:
/var/lib/neo4j/data/ - Log files:
/var/log/neo4j/ - Plugins:
/var/lib/neo4j/plugins/
Managing Neo4j
sudo systemctl start neo4j # Start Neo4j
sudo systemctl stop neo4j # Stop Neo4j
sudo systemctl restart neo4j # Restart Neo4j
sudo systemctl status neo4j # Check status