标签:支持 centos 技术 卸载 alt get enable 输入 端口
输入命令:neo4j,系统将会返回关于neo4j运行命令的相关命令,通过使用"neo4j 命令名"的格式就可以运行相关的操作。
neo4j console
neo4j start
neo4j stop
neo4j restart
neo4j status
neo4j install-service
neo4j uninstall-service
cd /opt
wget https://neo4j.com/artifact.php?name=neo4j-community-3.5.19-unix.tar.gz
tar -zxvf neo4j-community-3.5.19-unix.tar.gz
cd neo4j-community-3.5.19/bin/
./neo4j start
./cypher-shell
match (n) return n;
CALL dbms.changePassword(‘123456‘);
match (n) return n;
对于CentOS系统来说,需要手动安装yum源,执行如下的命令。
#将安装配置文件导入到系统中
rpm --import https://debian.neo4j.com/neotechnology.gpg.key
cat <<EOF> /etc/yum.repos.d/neo4j.repo
[neo4j]
name=Neo4j Yum Repo
baseurl=http://yum.neo4j.com/stable
enabled=1
gpgcheck=1
EOF
# 安装社区版
sudo yum install neo4j
# 安装企业版
sudo yum install neo4j-enterprise
安装neo4j社区版
sudo apt-get install neo4j
sudo apt-get install neo4j-enterprise
#dbms.connector.https.address=localhost:7474
dbms.connector.https.address=0.0.0.0:7474
#dbms.connectors.default_listen_address=0.0.0.0
dbms.connectors.default_listen_address=0.0.0.0
./cypher-shell
标签:支持 centos 技术 卸载 alt get enable 输入 端口
原文地址:https://www.cnblogs.com/xuweiweiwoaini/p/13279070.html