快速入门

针对常见场景快速入门

下载一个版本

找到某个版本的副本的 URL;它将命名为neo4j-$RELEASEVERSION.tgz

您必须设置acceptLicenseAgreement=yes来接受许可协议,否则部署将不会成功。

Standalone(单服务器)

对于 Neo4j standalone(即不包括 Neo4j Causal Cluster),Neo4j 4.3 及更高版本提供了产品化的 Helm charts。

这是在 Kubernetes 中运行 standalone Neo4j 服务器的推荐方式。完整细节请参阅Neo4j 操作手册的 Kubernetes 部分

helm install mygraph RELEASE_URL \
    --set core.standalone=true \
    --set acceptLicenseAgreement=yes \
    --set neo4jPassword=mySecretPassword

Causal Cluster

helm install mygraph RELEASE_URL \
    --set acceptLicenseAgreement=yes \
    --set neo4jPassword=mySecretPassword \
    --set core.numberOfServers=3 \
    --set readReplica.numberOfServers=0

卸载

helm uninstall mygraph

何处寻求帮助

如果您有本用户指南其他部分未涵盖的问题,Neo4j 社区网站是寻求帮助的好地方。

© . All rights reserved.