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

hxd pushed a commit to branch rel/0.10
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git

commit 8d7aaeca127ee7c322ba1df802ffd293537645d6
Author: xiangdong huang <[email protected]>
AuthorDate: Wed Jun 10 16:56:17 2020 +0800

    change start-client.sh to start-cli.sh in doc
---
 docs/Development/VoteRelease.md          | 2 +-
 docs/UserGuide/Server/Docker Image.md    | 6 +++---
 docs/zh/Development/VoteRelease.md       | 2 +-
 docs/zh/UserGuide/Server/Docker Image.md | 6 +++---
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/docs/Development/VoteRelease.md b/docs/Development/VoteRelease.md
index b7598e5..a244500 100644
--- a/docs/Development/VoteRelease.md
+++ b/docs/Development/VoteRelease.md
@@ -132,7 +132,7 @@ Compared with the corresponding .sha512, the same is fine.
 ```
 nohup ./sbin/start-server.sh >/dev/null 2>&1 &
 
-./sbin/start-client.sh
+./sbin/start-cli.sh
 
 SET STORAGE GROUP TO root.turbine;
 CREATE TIMESERIES root.turbine.d1.s0 WITH DATATYPE=DOUBLE, ENCODING=GORILLA;
diff --git a/docs/UserGuide/Server/Docker Image.md 
b/docs/UserGuide/Server/Docker Image.md
index 2cc68fe..f9e1928 100644
--- a/docs/UserGuide/Server/Docker Image.md     
+++ b/docs/UserGuide/Server/Docker Image.md     
@@ -65,16 +65,16 @@ suppose the IP is <C_IP>.
 4. If you just want to have a try by using iotdb-cli, you can:
 ```
 $ docker exec -it /bin/bash  <C_ID>
-$ (now you have enter the container): /cli/sbin/start-client.sh -h localhost 
-p 6667 -u root -pw root
+$ (now you have enter the container): /cli/sbin/start-cli.sh -h localhost -p 
6667 -u root -pw root
 ```
 
 Or,  run a new docker container as the client:
 ```
-$ docker run -it iotdb:base /cli/sbin/start-client.sh -h <C_IP> -p 6667 -u 
root -pw root
+$ docker run -it iotdb:base /cli/sbin/start-cli.sh -h <C_IP> -p 6667 -u root 
-pw root
 ```
 Or,  if you have a iotdb-cli locally (e.g., you have compiled the source code 
by `mvn package`), and suppose your work_dir is cli/bin, then you can just run:
 ```
-$ start-client.sh -h localhost -p 6667 -u root -pw root
+$ start-cli.sh -h localhost -p 6667 -u root -pw root
 ```
 5. If you want to write codes to insert data and query data, please add the 
following dependence:
 ```xml
diff --git a/docs/zh/Development/VoteRelease.md 
b/docs/zh/Development/VoteRelease.md
index 107064c..ffeec96 100644
--- a/docs/zh/Development/VoteRelease.md
+++ b/docs/zh/Development/VoteRelease.md
@@ -132,7 +132,7 @@ shasum -a512 apache-iotdb-0.9.0-incubating-bin.zip
 ```
 nohup ./sbin/start-server.sh >/dev/null 2>&1 &
 
-./sbin/start-client.sh
+./sbin/start-cli.sh
 
 SET STORAGE GROUP TO root.turbine;
 CREATE TIMESERIES root.turbine.d1.s0 WITH DATATYPE=DOUBLE, ENCODING=GORILLA;
diff --git a/docs/zh/UserGuide/Server/Docker Image.md 
b/docs/zh/UserGuide/Server/Docker Image.md
index 190f2db..81e3f86 100644
--- a/docs/zh/UserGuide/Server/Docker Image.md  
+++ b/docs/zh/UserGuide/Server/Docker Image.md  
@@ -65,16 +65,16 @@ $ docker inspect --format='{{.NetworkSettings.IPAddress}}' 
<C_ID>
 4. 如果您想尝试使用 iotdb-cli 命令行, 您可以使用如下命令:
 ```
 $ docker exec -it /bin/bash  <C_ID>
-$ (now you have enter the container): /cli/sbin/start-client.sh -h localhost 
-p 6667 -u root -pw root
+$ (now you have enter the container): /cli/sbin/start-cli.sh -h localhost -p 
6667 -u root -pw root
 ```
 
 或者运行一个新的 client docker container,命令如下:
 ```
-$ docker run -it iotdb:base /cli/sbin/start-client.sh -h <C_IP> -p 6667 -u 
root -pw root
+$ docker run -it iotdb:base /cli/sbin/start-cli.sh -h <C_IP> -p 6667 -u root 
-pw root
 ```
 还可以使用本地的 iotdb-cli (比如:您已经使用`mvn package`编译过源码), 假设您的 work_dir 是 cli/bin, 
那么您可以直接运行:
 ```
-$ start-client.sh -h localhost -p 6667 -u root -pw root
+$ start-cli.sh -h localhost -p 6667 -u root -pw root
 ```
 5. 如果您想写一些代码来插入或者查询数据,您可以在 pom.xml 文件中加入下面的依赖:
 ```xml

Reply via email to