neo4j 安装或设置

示例

转到安装Neo4j,它将通过您的Web浏览器检测操作系统平台,下载并按照适用于您操作系统的常规安装说明进行操作。

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