Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,17 @@ On each server, navigate to the `sbin` directory and start the DataNode:
./start-datanode.sh -d # The "-d" flag starts the process in the background.
```

### 3.6 Verify Activation
### 3.6 Start CLI

Check the `ClusterActivationStatus` field. If it shows `ACTIVATED`, the database has been successfully activated.
Enter the IoTDB CLI.

```SQL
# For Linux or macOS
./start-cli.sh -sql_dialect table

# For Windows
./start-cli.bat -sql_dialect table
```

## 4. Maintenance

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ Enter the container, log in to the database through CLI, and use the `show clust

```SQL
docker exec -it iotdb /bin/bash #Entering the container
./start-cli.sh -h iotdb #Log in to the database
./start-cli.sh -sql_dialect table -h iotdb #Log in to the database
IoTDB> show cluster #View status
```

Expand Down Expand Up @@ -370,7 +370,7 @@ docker-compose -f datanode.yml up -d #Background startup

```SQL
docker exec -it iotdb-datanode /bin/bash #Entering the container
./start-cli.sh -h iotdb-1 #Log in to the database
./start-cli.sh -sql_dialect table -h iotdb-1 #Log in to the database
IoTDB> show cluster #View status
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,17 @@ Navigate to the `sbin` directory of IoTDB and start the DataNode:
./sbin/start-datanode.sh -d # The "-d" flag starts the process in the background.
```

### 2.5 Verify Activation
### 3.5 Start CLI

Check the `ClusterActivationStatus` field. If it shows `ACTIVATED`, the database has been successfully activated.
Enter the IoTDB CLI.

![](/img/%E5%8D%95%E6%9C%BA-%E9%AA%8C%E8%AF%81.png)
```SQL
# For Linux or macOS
./start-cli.sh -sql_dialect table

# For Windows
./start-cli.bat -sql_dialect table
```

## 3. Common Issues

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,17 @@ On each server, navigate to the `sbin` directory and start the DataNode:
./start-datanode.sh -d # The "-d" flag starts the process in the background.
```

### 3.6 Verify Activation
### 3.6 Start CLI

Check the `ClusterActivationStatus` field. If it shows `ACTIVATED`, the database has been successfully activated.
Enter the IoTDB CLI.

```SQL
# For Linux or macOS
./start-cli.sh -sql_dialect table

# For Windows
./start-cli.bat -sql_dialect table
```

## 4. Maintenance

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ Enter the container, log in to the database through CLI, and use the `show clust

```SQL
docker exec -it iotdb /bin/bash #Entering the container
./start-cli.sh -h iotdb #Log in to the database
./start-cli.sh -sql_dialect table -h iotdb #Log in to the database
IoTDB> show cluster #View status
```

Expand Down Expand Up @@ -370,7 +370,7 @@ docker-compose -f datanode.yml up -d #Background startup

```SQL
docker exec -it iotdb-datanode /bin/bash #Entering the container
./start-cli.sh -h iotdb-1 #Log in to the database
./start-cli.sh -sql_dialect table -h iotdb-1 #Log in to the database
IoTDB> show cluster #View status
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,17 @@ Navigate to the `sbin` directory of IoTDB and start the DataNode:
./sbin/start-datanode.sh -d # The "-d" flag starts the process in the background.
```

### 2.5 Verify Activation
### 2.5 Start CLI

Check the `ClusterActivationStatus` field. If it shows `ACTIVATED`, the database has been successfully activated.
Enter the IoTDB CLI.

![](/img/%E5%8D%95%E6%9C%BA-%E9%AA%8C%E8%AF%81.png)
```SQL
# For Linux or macOS
./start-cli.sh -sql_dialect table

# For Windows
./start-cli.bat -sql_dialect table
```

## 3. Common Issues

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,17 @@ cd sbin
./start-datanode.sh -d #-d参数将在后台进行启动
```

### 3.5 验证激活
### 3.5 启动 CLI

当看到“Result”字段状态显示为success表示激活成功
表模型 CLI 进入命令:

![](/img/%E9%9B%86%E7%BE%A4-%E9%AA%8C%E8%AF%81.png)
```SQL
# Linux或MACOS系统
./start-cli.sh -sql_dialect table

# windows系统
./start-cli.bat -sql_dialect table
```

## 4. 节点维护步骤

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ docker-compose -f docker-compose-standalone.yml up -d #后台启动

```SQL
docker exec -it iotdb /bin/bash #进入容器
./start-cli.sh -h iotdb #登录数据库
./start-cli.sh -sql_dialect table -h iotdb #登录数据库
IoTDB> show cluster #查看服务状态
```

Expand Down Expand Up @@ -363,7 +363,7 @@ docker-compose -f datanode.yml up -d #后台启动

```SQL
docker exec -it iotdb-datanode /bin/bash #进入容器
./start-cli.sh -h iotdb-1 #登录数据库
./start-cli.sh -sql_dialect table -h iotdb-1 #登录数据库
IoTDB> show cluster #查看服务状态
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,18 @@ DataNode 配置
```shell
./sbin/start-datanode.sh -d #“-d”参数将在后台进行启动
```
### 2.5 验证激活

当看到“ClusterActivationStatus”字段状态显示为ACTIVATED表示激活成功
### 3.5 启动 CLI

![](/img/%E5%8D%95%E6%9C%BA-%E9%AA%8C%E8%AF%81.png)
表模型 CLI 进入命令:

```SQL
# Linux或MACOS系统
./start-cli.sh -sql_dialect table

# windows系统
./start-cli.bat -sql_dialect table
```

## 3. 常见问题

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,17 @@ cd sbin
./start-datanode.sh -d #-d参数将在后台进行启动
```

### 3.5 验证激活
### 3.5 启动 CLI

当看到“Result”字段状态显示为success表示激活成功
表模型 CLI 进入命令:

![](/img/%E9%9B%86%E7%BE%A4-%E9%AA%8C%E8%AF%81.png)
```SQL
# Linux或MACOS系统
./start-cli.sh -sql_dialect table

# windows系统
./start-cli.bat -sql_dialect table
```

## 4. 节点维护步骤

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ docker-compose -f docker-compose-standalone.yml up -d #后台启动

```SQL
docker exec -it iotdb /bin/bash #进入容器
./start-cli.sh -h iotdb #登录数据库
./start-cli.sh -sql_dialect table -h iotdb #登录数据库
IoTDB> show cluster #查看服务状态
```

Expand Down Expand Up @@ -363,7 +363,7 @@ docker-compose -f datanode.yml up -d #后台启动

```SQL
docker exec -it iotdb-datanode /bin/bash #进入容器
./start-cli.sh -h iotdb-1 #登录数据库
./start-cli.sh -sql_dialect table -h iotdb-1 #登录数据库
IoTDB> show cluster #查看服务状态
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,17 @@ DataNode 配置
```shell
./sbin/start-datanode.sh -d #“-d”参数将在后台进行启动
```
### 2.5 验证激活
### 3.5 启动 CLI

当看到“ClusterActivationStatus”字段状态显示为ACTIVATED表示激活成功
表模型 CLI 进入命令:

![](/img/%E5%8D%95%E6%9C%BA-%E9%AA%8C%E8%AF%81.png)
```SQL
# Linux或MACOS系统
./start-cli.sh -sql_dialect table

# windows系统
./start-cli.bat -sql_dialect table
```

## 3. 常见问题

Expand Down