You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2023/05/17 02:39:57 UTC

[iotdb] branch master updated: add a note to clarify that connecting to iotdb requires changing the RPC address (#9868)

This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 54a3ca765a add a note to clarify that connecting to iotdb requires changing the RPC address (#9868)
54a3ca765a is described below

commit 54a3ca765ad1834cd454ca77e1c543f88559ac51
Author: wanghui42 <10...@users.noreply.github.com>
AuthorDate: Wed May 17 10:39:51 2023 +0800

    add a note to clarify that connecting to iotdb requires changing the RPC address (#9868)
---
 docs/UserGuide/QuickStart/QuickStart.md    | 2 +-
 docs/zh/UserGuide/QuickStart/QuickStart.md | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/docs/UserGuide/QuickStart/QuickStart.md b/docs/UserGuide/QuickStart/QuickStart.md
index 5904f2926f..4d74ab7c7c 100644
--- a/docs/UserGuide/QuickStart/QuickStart.md
+++ b/docs/UserGuide/QuickStart/QuickStart.md
@@ -72,7 +72,7 @@ Users can start IoTDB standalone mode by the start-standalone script under the s
 > sbin\start-standalone.bat
 ```
 
-Note: Currently, To run standalone mode, you need to ensure that all addresses are set to 127.0.0.1, and replication factors set to 1, which is by now the default setting.
+Note: Currently, To run standalone mode, you need to ensure that all addresses are set to 127.0.0.1, If you need to access the IoTDB from a machine different from the one where the IoTDB is located, please change the configuration item `dn_rpc_address` to the IP of the machine where the IoTDB lives. And replication factors set to 1, which is by now the default setting.
 Besides, it's recommended to use SimpleConsensus in this mode, since it brings additional efficiency.
 ### Use Cli
 
diff --git a/docs/zh/UserGuide/QuickStart/QuickStart.md b/docs/zh/UserGuide/QuickStart/QuickStart.md
index c0e9d79ae5..f553f7f6f5 100644
--- a/docs/zh/UserGuide/QuickStart/QuickStart.md
+++ b/docs/zh/UserGuide/QuickStart/QuickStart.md
@@ -67,7 +67,8 @@ Windows 系统启动命令如下:
 > sbin\start-standalone.bat
 ```
 
-注意:目前,要使用单机模式,你需要保证所有的地址设置为 127.0.0.1,副本数设置为1。并且,推荐使用 SimpleConsensus,因为这会带来额外的效率。这些现在都是默认配置。
+注意:目前,要使用单机模式,你需要保证所有的地址设置为 127.0.0.1,如果需要从非 IoTDB 所在的机器访问此IoTDB,请将配置项 `dn_rpc_address` 修改为 IoTDB 所在的机器 IP。副本数设置为1。并且,推荐使用 SimpleConsensus,因为这会带来额外的效率。这些现在都是默认配置。
+
 ### 使用 Cli 工具
 
 IoTDB 为用户提供多种与服务器交互的方式,在此我们介绍使用 Cli 工具进行写入、查询数据的基本步骤。