Forked from fabiotatsuo/gist:4b9219aca07c38cbbdd70c6dc1456ddb
Created
October 3, 2020 03:18
-
-
Save khu-md/e14bd0759c445943dbbe1bd20f885805 to your computer and use it in GitHub Desktop.
Neo4j install OS X
This file contains hidden or 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