From fbd11cfe0a483f77b45990582ba3767a56f0d116 Mon Sep 17 00:00:00 2001 From: Tsukilc <153273766+Tsukilc@users.noreply.github.com> Date: Wed, 11 Feb 2026 21:22:19 +0800 Subject: [PATCH] chore(docs): docker starts up by default by setting a password --- content/cn/docs/quickstart/hugegraph/hugegraph-server.md | 2 ++ content/en/docs/quickstart/hugegraph/hugegraph-server.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/content/cn/docs/quickstart/hugegraph/hugegraph-server.md b/content/cn/docs/quickstart/hugegraph/hugegraph-server.md index 9aad3501c..b24c71385 100644 --- a/content/cn/docs/quickstart/hugegraph/hugegraph-server.md +++ b/content/cn/docs/quickstart/hugegraph/hugegraph-server.md @@ -222,6 +222,8 @@ pd.peers=127.0.0.1:8686 ```properties usePD=true +# 注意,1.7.0 必须在 rest-server.properties 配置 pd.peers +pd.peers=127.0.0.1:8686,127.0.0.1:8687,127.0.0.1:8688 # 若需要 auth # auth.authenticator=org.apache.hugegraph.auth.StandardAuthenticator diff --git a/content/en/docs/quickstart/hugegraph/hugegraph-server.md b/content/en/docs/quickstart/hugegraph/hugegraph-server.md index 921577d1d..803b67bd5 100644 --- a/content/en/docs/quickstart/hugegraph/hugegraph-server.md +++ b/content/en/docs/quickstart/hugegraph/hugegraph-server.md @@ -239,6 +239,8 @@ Then enable PD discovery in `rest-server.properties` (required for every HugeGra ```properties usePD=true +# notice: must have this conf in 1.7.0 +pd.peers=127.0.0.1:8686,127.0.0.1:8687,127.0.0.1:8688 # If auth is needed # auth.authenticator=org.apache.hugegraph.auth.StandardAuthenticator ```