# 确保安装了 jdk
# 修改配置文件
$ vim conf/neo4j.conf
# cofigure ip/host
dbms.connectors.default_advertised_address=192.168.51.100
# To accept non-local connections, uncomment this line:
dbms.connectors.default_listen_address=0.0.0.0
# 启动
$ bin/neo4j start
Starting Neo4j.
WARNING: Max 1024 open files allowed, minimum of 40000 recommended. See the Neo4j manual.
Started neo4j (pid 10339). It is available at http://0.0.0.0:7474/
There may be a short delay until the server is ready.
See /root/neo4j-community-3.5.1/logs/neo4j.log for current status.
# 查看日志
$ tail -100f /root/neo4j-community-3.5.1/logs/neo4j.log
# 浏览器访问
http://192.168.51.100:7474
# 数据库地址(初始用户名和密码 neo4j/neo4j)
bolt://192.168.51.100:7687