标签:lis soft 安装 community profile home listen code source
https://neo4j.com/download-center/#community
配置最大打开文件数
vim /etc/security/limits.conf
* soft nofile 204800
* hard nofile 204800
* soft nproc 204800
* hard nproc 204800
sysctl -p 生效
安装
tar xvf neo4j-community-3.5.13-unix.tar.gz -C ../neo4j/
##修改使任何ip 可访问
vim neo4j-community-3.5.13/conf/neo4j.conf
dbms.connectors.default_listen_address=0.0.0.0
启动
neo4j-community-3.5.13/bin/neo4j start
环境变量添加
vim /etc/profile
加入以下语句
NEO4J_HOME=/usr/neo4j
PATH=$PATH:$NEO4J_HOME/bin
export NEO4J_HOME PATH
然后重新加载
source /etc/profile
访问
ip:7474
学习文档
http://neo4j.com.cn/public/cypher/neo4j_graph_theory_basics.html
标签:lis soft 安装 community profile home listen code source
原文地址:https://www.cnblogs.com/g2thend/p/12050494.html