Notes on installing neo4j 4.1.3 on centos
# yum install -y java-11-openjdk
# curl -O https://dist.neo4j.org/cypher-shell/cypher-shell-4.1.2-1.noarch.rpm
# rpm -U cypher-shell-4.1.2-1.noarch.rpm
#curl -O https://dist.neo4j.org/rpm/neo4j-4.1.3-1.noarch.rpm
# rpm -U neo4j-4.1.3-1.noarch.rpm
If multiple versions of java are included, an error will occur!
# neo4j version
neo4j 4.1.3
sudo vi /etc/systemd/user.conf
/etc/systemd/user.conf
[Manager]
...
DefaultLimitNOFILE=60000
sudo vi /etc/security/limits.conf
/etc/security/limits.conf
neo4j soft nofile 60000
neo4j hard nofile 60000
sudo systemctl daemon-reload
sudo vi /etc/neo4j/neo4j.conf
/etc/neo4j/neo4j.conf
dbms.connector.bolt.address=0.0.0.0:7687
dbms.connector.https.address=<IP address of the server>:7474
sudo neo4j start
end.
Recommended Posts