Skip to content

Commit cd22809

Browse files
committed
add root and TimechoDB@2021 to deployment document
1 parent ffba0c5 commit cd22809

File tree

16 files changed

+306
-134
lines changed

16 files changed

+306
-134
lines changed

src/UserGuide/Master/Table/Deployment-and-Maintenance/Cluster-Deployment_timecho.md

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -191,14 +191,25 @@ On each server, navigate to the `sbin` directory and start the DataNode:
191191
#### Option 1: Command-Based Activation
192192

193193
1. Enter the IoTDB CLI on any node of the cluster:
194-
- **For Table Model**:
195-
```SQL
196-
# For Linux or macOS
197-
./start-cli.sh -sql_dialect table
198-
199-
# For Windows
200-
./start-cli.bat -sql_dialect table
201-
```
194+
195+
**Linux** or **MacOS**
196+
197+
```Bash
198+
# Before version V2.0.6.x
199+
Shell> bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
200+
# V2.0.6.x and later versions
201+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
202+
```
203+
**Windows**
204+
205+
```Bash
206+
# Before version V2.0.4.x
207+
Shell> sbin\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
208+
# V2.0.4.x and later versions, before version V2.0.6.x
209+
Shell> sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
210+
# V2.0.6.x and later versions
211+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
212+
```
202213

203214
2. Run the following command to retrieve the machine code required for activation:
204215

src/UserGuide/Master/Table/Deployment-and-Maintenance/Stand-Alone-Deployment_timecho.md

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,25 @@ Navigate to the `sbin` directory of IoTDB and start the DataNode:
158158
#### Option 1: Command-Based Activation
159159

160160
1. Enter the IoTDB CLI.
161-
- **For Table Model**:
162-
- ```SQL
163-
# For Linux or macOS
164-
./start-cli.sh -sql_dialect table
165-
166-
# For Windows
167-
./start-cli.bat -sql_dialect table
168-
```
161+
162+
**Linux** or **MacOS**
163+
164+
```Bash
165+
# Before version V2.0.6.x
166+
Shell> bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
167+
# V2.0.6.x and later versions
168+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
169+
```
170+
**Windows**
171+
172+
```Bash
173+
# Before version V2.0.4.x
174+
Shell> sbin\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
175+
# V2.0.4.x and later versions, before version V2.0.6.x
176+
Shell> sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
177+
# V2.0.6.x and later versions
178+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
179+
```
169180

170181
2. Run the following command to retrieve the machine code required for activation:
171182

src/UserGuide/Master/Tree/Deployment-and-Maintenance/Cluster-Deployment_timecho.md

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -194,15 +194,28 @@ cd sbin
194194

195195
1. Enter the IoTDB CLI on any node of the cluster:
196196

197-
- **For Tree Model**:
198-
199-
```SQL
200-
# For Linux or macOS
201-
./start-cli.sh
202-
203-
# For Windows
204-
./start-cli.bat
205-
```
197+
The Linux and MacOS system startup commands are as follows:
198+
199+
```shell
200+
# Before version V2.0.6.x
201+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw root
202+
203+
# V2.0.6.x and later versions
204+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021
205+
```
206+
207+
The Windows system startup commands are as follows:
208+
209+
```shell
210+
# Before version V2.0.4.x
211+
Shell > sbin\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root
212+
213+
# V2.0.4.x and later versions, before version V2.0.6.x
214+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root
215+
216+
# V2.0.6.x and later versions
217+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021
218+
```
206219

207220
2. Run the following command to retrieve the machine code required for activation:
208221

src/UserGuide/Master/Tree/Deployment-and-Maintenance/Stand-Alone-Deployment_timecho.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,27 @@ Navigate to the `sbin` directory of IoTDB and start the DataNode:
157157

158158
1. Enter the IoTDB CLI.
159159

160-
- **For Tree Model**:
160+
The Linux and MacOS system startup commands are as follows:
161161

162-
```SQL
163-
# For Linux or macOS
164-
./start-cli.sh
162+
```shell
163+
# Before version V2.0.6.x
164+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw root
165165
166-
# For Windows
167-
./start-cli.bat
166+
# V2.0.6.x and later versions
167+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021
168+
```
169+
170+
The Windows system startup commands are as follows:
171+
172+
```shell
173+
# Before version V2.0.4.x
174+
Shell > sbin\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root
175+
176+
# V2.0.4.x and later versions, before version V2.0.6.x
177+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root
178+
179+
# V2.0.6.x and later versions
180+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021
168181
```
169182

170183
2. Run the following command to retrieve the machine code required for activation:

src/UserGuide/latest-Table/Deployment-and-Maintenance/Cluster-Deployment_timecho.md

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -191,14 +191,25 @@ On each server, navigate to the `sbin` directory and start the DataNode:
191191
#### Option 1: Command-Based Activation
192192

193193
1. Enter the IoTDB CLI on any node of the cluster:
194-
- **For Table Model**:
195-
```SQL
196-
# For Linux or macOS
197-
./start-cli.sh -sql_dialect table
198-
199-
# For Windows
200-
./start-cli.bat -sql_dialect table
201-
```
194+
195+
**Linux** or **MacOS**
196+
197+
```Bash
198+
# Before version V2.0.6.x
199+
Shell> bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
200+
# V2.0.6.x and later versions
201+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
202+
```
203+
**Windows**
204+
205+
```Bash
206+
# Before version V2.0.4.x
207+
Shell> sbin\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
208+
# V2.0.4.x and later versions, before version V2.0.6.x
209+
Shell> sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
210+
# V2.0.6.x and later versions
211+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
212+
```
202213

203214
2. Run the following command to retrieve the machine code required for activation:
204215

src/UserGuide/latest-Table/Deployment-and-Maintenance/Stand-Alone-Deployment_timecho.md

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,25 @@ Navigate to the `sbin` directory of IoTDB and start the DataNode:
158158
#### Option 1: Command-Based Activation
159159

160160
1. Enter the IoTDB CLI.
161-
- **For Table Model**:
162-
- ```SQL
163-
# For Linux or macOS
164-
./start-cli.sh -sql_dialect table
165-
166-
# For Windows
167-
./start-cli.bat -sql_dialect table
168-
```
161+
162+
**Linux** or **MacOS**
163+
164+
```Bash
165+
# Before version V2.0.6.x
166+
Shell> bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
167+
# V2.0.6.x and later versions
168+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
169+
```
170+
**Windows**
171+
172+
```Bash
173+
# Before version V2.0.4.x
174+
Shell> sbin\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
175+
# V2.0.4.x and later versions, before version V2.0.6.x
176+
Shell> sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
177+
# V2.0.6.x and later versions
178+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
179+
```
169180

170181
2. Run the following command to retrieve the machine code required for activation:
171182

src/UserGuide/latest/Deployment-and-Maintenance/Cluster-Deployment_timecho.md

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -194,15 +194,28 @@ cd sbin
194194

195195
1. Enter the IoTDB CLI on any node of the cluster:
196196

197-
- **For Tree Model**:
198-
199-
```SQL
200-
# For Linux or macOS
201-
./start-cli.sh
202-
203-
# For Windows
204-
./start-cli.bat
205-
```
197+
The Linux and MacOS system startup commands are as follows:
198+
199+
```shell
200+
# Before version V2.0.6.x
201+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw root
202+
203+
# V2.0.6.x and later versions
204+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021
205+
```
206+
207+
The Windows system startup commands are as follows:
208+
209+
```shell
210+
# Before version V2.0.4.x
211+
Shell > sbin\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root
212+
213+
# V2.0.4.x and later versions, before version V2.0.6.x
214+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root
215+
216+
# V2.0.6.x and later versions
217+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021
218+
```
206219

207220
2. Run the following command to retrieve the machine code required for activation:
208221

src/UserGuide/latest/Deployment-and-Maintenance/Stand-Alone-Deployment_timecho.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,27 @@ Navigate to the `sbin` directory of IoTDB and start the DataNode:
157157

158158
1. Enter the IoTDB CLI.
159159

160-
- **For Tree Model**:
160+
The Linux and MacOS system startup commands are as follows:
161161

162-
```SQL
163-
# For Linux or macOS
164-
./start-cli.sh
162+
```shell
163+
# Before version V2.0.6.x
164+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw root
165165
166-
# For Windows
167-
./start-cli.bat
166+
# V2.0.6.x and later versions
167+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021
168+
```
169+
170+
The Windows system startup commands are as follows:
171+
172+
```shell
173+
# Before version V2.0.4.x
174+
Shell > sbin\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root
175+
176+
# V2.0.4.x and later versions, before version V2.0.6.x
177+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root
178+
179+
# V2.0.6.x and later versions
180+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021
168181
```
169182

170183
2. Run the following command to retrieve the machine code required for activation:

src/zh/UserGuide/Master/Table/Deployment-and-Maintenance/Cluster-Deployment_timecho.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -189,15 +189,24 @@ cd sbin
189189

190190
- 进入集群任一节点 CLI,执行获取机器码的语句
191191

192-
- 表模型 CLI 进入命令:
193-
194-
```SQL
195-
# Linux或MACOS系统
196-
./start-cli.sh -sql_dialect table
197-
198-
# windows系统
199-
./start-cli.bat -sql_dialect table
200-
```
192+
```shell
193+
# Linux 系统与 MacOS 系统启动命令如下:
194+
# V2.0.6.x 版本之前
195+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
196+
197+
# V2.0.6.x 版本及之后
198+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
199+
200+
# Windows 系统启动命令如下:
201+
# V2.0.4.x 版本之前
202+
Shell > sbin\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
203+
204+
# V2.0.4.x 版本及之后, V2.0.6.x 版本之前
205+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
206+
207+
# V2.0.6.x 版本及之后
208+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
209+
```
201210

202211
- 执行以下内容获取激活所需机器码:
203212

src/zh/UserGuide/Master/Table/Deployment-and-Maintenance/Stand-Alone-Deployment_timecho.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -152,14 +152,24 @@ DataNode 配置
152152

153153
- 进入 IoTDB CLI
154154

155-
- 表模型 CLI 进入命令:
156-
```SQL
157-
# Linux或MACOS系统
158-
./start-cli.sh -sql_dialect table
159-
160-
# windows系统
161-
./start-cli.bat -sql_dialect table
162-
```
155+
```shell
156+
# Linux 系统与 MacOS 系统启动命令如下:
157+
# V2.0.6.x 版本之前
158+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
159+
160+
# V2.0.6.x 版本及之后
161+
Shell > bash sbin/start-cli.sh -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
162+
163+
# Windows 系统启动命令如下:
164+
# V2.0.4.x 版本之前
165+
Shell > sbin\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
166+
167+
# V2.0.4.x 版本及之后, V2.0.6.x 版本之前
168+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw root -sql_dialect table
169+
170+
# V2.0.6.x 版本及之后
171+
Shell > sbin\windows\start-cli.bat -h 127.0.0.1 -p 6667 -u root -pw TimechoDB@2021 -sql_dialect table
172+
```
163173

164174
- 执行以下内容获取激活所需机器码:
165175

0 commit comments

Comments
 (0)