安裝或設定
轉到安裝 Neo4j ,它應該通過 Web 瀏覽器檢測 OS 平臺,下載並按照作業系統的常規安裝說明進行操作。
Neo4j 是用 Java 建立的,因此可以在安裝了 Java 的任何平臺上執行,但是 Neo4j 團隊通過為流行平臺提供簡單的安裝包來簡化安裝(例如,針對 Mac 的 .dmg,針對 Debian 和 Ubuntu 的 .deb,.exe。適用於 Windows 64 和 32 位平臺……)。
要檢視其他可用的版本和平臺,請參閱其他 Neo4j 版本頁面
將 Neo4j 設定為 Docker 容器:
## Required : Docker machine, docker cli
# Pull neo4j image from the docker hub
docker pull neo4j
# create the docker container
docker run \
--publish=7474:7474 --publish=7687:7687 \
--volume=$HOME/neo4j/data:/data \
neo4j
# If you are running docker directly on the host (e.g ubuntu, RHEL, CentOs etc)
# Access the neo4j console at http://localhost:7474
# If you are on OSX/ Windows
# Access the neo4j console at http://<docker-machine-ip>:7474