Thursday, December 10, 2020

Neo4J installing community server

It was as simple as this


Open up your terminal/shell.

Extract the contents of the archive, using:

tar -xf <filecode>.

For example,

tar -xf neo4j-community-4.2.1-unix.tar.gz

Place the extracted files in a permanent home on your server. The top level directory is referred to as NEO4J_HOME.

To run Neo4j as a console application, use:

<NEO4J_HOME>/bin/neo4j console

To run Neo4j in a background process, use:

<NEO4J_HOME>/bin/neo4j start

For additional commands see the Unix tarball installation documentation.

Visit http://localhost:7474 in your web browser.

Connect using the username 'neo4j' with default password 'neo4j'. You'll then be prompted to change the password.



Only thing to note is that if the DB is already running this does not work very well as the database provided by the community server 

Does not start OK.


References:

https://neo4j.com/download-thanks/?edition=community&release=4.2.1&flavour=unix&_gl=1*1gycz6j*_ga*MTE2NzMwNjc4Ny4xNjAzMzY1Njg1*_ga_DL38Q8KGQC*MTYwNzU5MzIzOS4yMy4xLjE2MDc1OTMyNTUuMA..&_ga=2.189343721.31438437.1607496289-1167306787.1603365685

No comments:

Post a Comment