Created
May 27, 2017 03:44
-
-
Save fabiotatsuo/4b9219aca07c38cbbdd70c6dc1456ddb to your computer and use it in GitHub Desktop.
Neo4j install OS X
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Neo4j install OS X | |
$ brew install neo4j | |
To have launchd start neo4j now and restart at login: | |
brew services start neo4j | |
Or, if you don't want/need a background service you can just run: | |
neo4j start | |
DB Folder | |
/usr/local/Cellar/neo4j/3.1.4/libexec/data/databases/ | |
Change db | |
$ cd /usr/local/Cellar/neo4j/3.1.4/libexec/conf | |
$ vim neo4j.conf | |
dbms.active_database=mydbname_graph.db | |
$ neo4j restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment