neo4j 3.1 安装

neo4j安装

下载

可以从官方网站上下载
https://neo4j.com/download/community-edition/

解压

tar xfz neo4j-community-3.1.0-unix.tar.gz
rm neo4j-community-3.1.0-unix.tar.gz
cd neo4j-community-3.1.0

基本操作

配置文件

nano conf/neo4j-server.properties

开启

./bin/neo4j start

关闭

./bin/neo4j stop

查看管理界面

http://youripaddress:7474
如果需要远程访问,请配置
conf/neo4j.conf
dbms.connectors.default_listen_address=0.0.0.0取消前面#

你可能感兴趣的:(neo4j)