Wednesday, February 16, 2022

How To Setup Remote Access Neo4j Graph Database | Allow Remote Connections

 in This Tutorial you will learn "How To Setup Remote Access Neo4j Graph Database On Ubuntu 20.04"

Neo4j is the world's leading open source Graph Database which is developed using Java technology. It is highly scalable and schema free (NoSQL).
Homepage - https://neo4j.com/
_________________________________________________________________________________________
Server - Os:  Ubuntu 20.04.3 LTS 64Bit        | IP -192.168.1.80            |Hostname -  ubuntu.example.com
_________________________________________________________________________________________
lsb_release -d ; hostname -I ; hostname
apt install apt-transport-https ca-certificates curl software-properties-common -y
curl -fsSL https://debian.neo4j.com/neotechnology.gpg.key | apt-key add -
add-apt-repository "deb https://debian.neo4j.com stable 4.1"
apt install neo4j -y
systemctl enable neo4j.service ; systemctl status neo4j.service
cypher-shell      || Username: neo4j  || Password: passwordnew
exit
nano /etc/neo4j/neo4j.conf
dbms.default_listen_address=0.0.0.0
systemctl restart neo4j

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
lsb_release -d ; hostname -I ; hostname
Username: neo4j  || Password -
systemctl status neo4j
cypher-shell -a 'neo4j://192.168.1.80:7687'
_________________________________________________________________________________________

No comments:

Post a Comment