Graph database neo4j installation

Deploying the docker image directly is OK 

docker run -itd --name neo4j -p 7474:7474 -p 7687:7687 --env=NEO4J_AUTH=neo4j/123456 neo4j

Description

--env=NEO4J_AUTH=neo4j/123456 is to specify the username and password of neo4j

--env=NEO4J_AUTH=none do not set a password

If you want to import data from csv, mount the import directory: -v Local path: /var/lib/neo4j/import

Guess you like

Origin blog.csdn.net/wuchenlhy/article/details/103166445