yum install java-1.8.0-openjdk
wget https://neo4j.com/artifact.php?name=neo4j-community-3.5.12-unix.tar.gz
tar -zvxf artifact.php\?name\=neo4j-community-3.5.12-unix.tar.gz
mv neo4j-community-3.5.12 /usr/neo4j
cd /usr/neo4j/conf
vim neo4j.conf
#*****************************************************************
# Network connector configuration
#*****************************************************************
# 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
vim /etc/profile
NEO4J_HOME=/usr/neo4j
PATH=$PATH:$NEO4J_HOME/bin
export NEO4J_HOME PATH
source /etc/profile
此时,只需要输出 neo4j start 即可启动
原文:https://www.cnblogs.com/zhenyauntg/p/13188155.html