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 2022/12/04 03:48:26 UTC

[iotdb] branch master updated: Fix readme of start-server to start-standalone (#8316)

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 36b96fd078 Fix readme of start-server to start-standalone (#8316)
36b96fd078 is described below

commit 36b96fd078c50d48388a03faab5b3db20cc075ea
Author: Jialin Qiao <qj...@mails.tsinghua.edu.cn>
AuthorDate: Sun Dec 4 11:48:20 2022 +0800

    Fix readme of start-server to start-standalone (#8316)
---
 README.md                                  | 16 +++++-----------
 README_ZH.md                               | 14 +++++---------
 docs/zh/UserGuide/QuickStart/QuickStart.md |  2 +-
 3 files changed, 11 insertions(+), 21 deletions(-)

diff --git a/README.md b/README.md
index 1139260a2d..1c4d497827 100644
--- a/README.md
+++ b/README.md
@@ -190,22 +190,16 @@ You can go through the following steps to test the installation. If there is no
 
 ### Start IoTDB
 
-Users can start IoTDB by the start-server script under the sbin folder.
+Users can start 1C1D IoTDB by the start-standalone script under the sbin folder.
 
 ```
 # Unix/OS X
-> nohup sbin/start-server.sh >/dev/null 2>&1 &
-or
-> nohup sbin/start-server.sh -c <conf_path> >/dev/null 2>&1 &
+> sbin/start-standalone.sh
 
 # Windows
-> sbin\start-server.bat -c <conf_path>
+> sbin\start-standalone.bat
 ```
 
-- "-c" is optional.
-- option "-c" specifies the system configuration file directory.
-
-
 ### Use IoTDB
 
 #### Use Cli
@@ -368,10 +362,10 @@ The server can be stopped with "ctrl-C" or the following script:
 
 ```
 # Unix/OS X
-> sbin/stop-server.sh
+> sbin/stop-standalone.sh
 
 # Windows
-> sbin\stop-server.bat
+> sbin\stop-standalone.bat
 ```
 
 ## Only build server
diff --git a/README_ZH.md b/README_ZH.md
index 00e888bf5e..6bfd2fbbe7 100644
--- a/README_ZH.md
+++ b/README_ZH.md
@@ -175,19 +175,15 @@ git checkout vx.x.x
 
 ### 启动 IoTDB
 
-可以通过运行 sbin 文件夹下的 start-server 脚本启动 IoTDB。
+可以通过运行 sbin 文件夹下的 start-standalone 脚本启动 1C1D IoTDB。
 
 ```
 # Unix/OS X
-> nohup sbin/start-server.sh >/dev/null 2>&1 &
-or
-> nohup sbin/start-server.sh -c <conf_path> >/dev/null 2>&1 &
+> sbin/start-standalone.sh
 
 # Windows
-> sbin\start-server.bat -c <conf_path>
+> sbin\start-standalone.bat
 ```
-- "-c"是可选的。
-- 选项 "-c" 指定了配置文件所在的文件夹。
 
 ### 使用 IoTDB
 
@@ -358,10 +354,10 @@ server 可以使用 "ctrl-C" 或者执行下面的脚本:
 
 ```
 # Unix/OS X
-> sbin/stop-server.sh
+> sbin/stop-standalone.sh
 
 # Windows
-> sbin\stop-server.bat
+> sbin\stop-standalone.bat
 ```
 
 ## 只编译 server
diff --git a/docs/zh/UserGuide/QuickStart/QuickStart.md b/docs/zh/UserGuide/QuickStart/QuickStart.md
index 5c550ecad1..3ecb2c2349 100644
--- a/docs/zh/UserGuide/QuickStart/QuickStart.md
+++ b/docs/zh/UserGuide/QuickStart/QuickStart.md
@@ -236,7 +236,7 @@ IoTDB> exit
 
 ### 停止 IoTDB
 
-用户可以使用$IOTDB_HOME/sbin 文件夹下的 stop-server 脚本停止 IoTDB。
+用户可以使用$IOTDB_HOME/sbin 文件夹下的 stop-standalone 脚本停止 IoTDB。
 
 Linux 系统与 MacOS 系统停止命令如下: