Code, tools, workflows and documentation for effective use of Neo4j.
IDSL members feel free to contribute.
Installing Neo4j on Ubuntu per Neo4j.org Documentation
wget -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
echo 'deb https://debian.neo4j.org/repo stable/' | sudo tee /etc/apt/sources.list.d/neo4j.list
sudo apt update
sudo apt install neo4j
sudo apt install neo4j-client
This is 3rd party package available for various systems. See
See neo4j.conf. Some important options:
# Whether requests to Neo4j are authenticated.
# To disable authentication, uncomment this line
dbms.security.auth_enabled=false
# 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