Neo4j Config Settings

From Izara Wiki
Jump to navigation Jump to search

Neo4j Configuration

https://neo4j.com/docs/operations-manual/current/configuration/
https://neo4j.com/docs/operations-manual/current/configuration/configuration-settings/
The neo4j.conf file is the main source of configuration settings in Neo4j and includes the mappings of configuration setting keys to values. The location of the neo4j.conf file in the different configurations of Neo4j is listed in [Default file locations].

  • into neo4j.conf file: ~$ cd /etc/neo4j and run:
sudo nano neo4j.conf

Default file locations

https://neo4j.com/docs/operations-manual/current/configuration/file-locations/#table-file-locations
An overview of where files are stored in the different Neo4j distributions and the necessary file permissions for running Neo4j.

Ports and Connectors

  • Network connector configuration in neo4j.conf
# Bolt connector
dbms.connector.bolt.enabled=true
dbms.connector.bolt.listen_address=0.0.0.0:7687

# HTTP Connector. There must be exactly one HTTP connector.
dbms.connector.http.enabled=true
dbms.connector.http.listen_address=0.0.0.0:7474

# HTTPS Connector. There can be zero or one HTTPS connectors.
dbms.connector.https.enabled=true
dbms.connector.https.listen_address=0.0.0.0:7473
  • SSL policy configuration: in future maybe need to use in neo4j.conf