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 @@ -508,8 +508,16 @@ For more details on cluster maintenance, please refer to: [Cluster Maintenance](
a. Terminate all ConfigNode Node and DataNode processes.
```Bash
# 1. Stop the ConfigNode and DataNode services
# Unix/OS X
sbin/stop-standalone.sh

# Windows
# Before V2.0.4.x
sbin\stop-standalone.bat

# V2.0.4.x and later
sbin\windows\stop-standalone.bat

# 2. Check for any remaining processes
jps
# Or
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,16 @@ When the status is all running, it indicates that the service has started succes
a. Terminate all ConfigNode Node and DataNode processes.
```Bash
# 1. Stop the ConfigNode and DataNode services
# Unix/OS X
sbin/stop-standalone.sh

# Windows
# Before V2.0.4.x
sbin\stop-standalone.bat

# V2.0.4.x and later
sbin\windows\stop-standalone.bat

# 2. Check for any remaining processes
jps
# Or
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -508,8 +508,16 @@ For more details on cluster maintenance, please refer to: [Cluster Maintenance](
a. Terminate all ConfigNode Node and DataNode processes.
```Bash
# 1. Stop the ConfigNode and DataNode services
# Unix/OS X
sbin/stop-standalone.sh

# Windows
# Before V2.0.4.x
sbin\stop-standalone.bat

# V2.0.4.x and later
sbin\windows\stop-standalone.bat

# 2. Check for any remaining processes
jps
# Or
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,16 @@ When the status is all running, it indicates that the service has started succes
a. Terminate all ConfigNode Node and DataNode processes.
```Bash
# 1. Stop the ConfigNode and DataNode services
# Unix/OS X
sbin/stop-standalone.sh

# Windows
# Before V2.0.4.x
sbin\stop-standalone.bat

# V2.0.4.x and later
sbin\windows\stop-standalone.bat

# 2. Check for any remaining processes
jps
# Or
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ remove datanode [datanode_id]

a. 结束所有 ConfigNode 和 DataNode 进程。

```Bash
```Bash
# 1. 停止 ConfigNode 和 DataNode 服务
# Unix/OS X
sbin/stop-standalone.sh
Expand All @@ -506,7 +506,7 @@ remove datanode [datanode_id]
# 如果确定机器上仅有1个iotdb,可以使用下面命令清理残留进程
ps -ef|grep iotdb|grep -v grep|tr -s ' ' ' ' |cut -d ' ' -f2|xargs kill -9
```
b. 删除 data 和 logs 目录。
b. 删除 data 和 logs 目录。

说明:删除 data 目录是必要的,删除 logs 目录是为了纯净日志,非必需。
```Bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ cd sbin

a. 结束所有 ConfigNode 和 DataNode 进程。

```Bash
```Bash
# 1. 停止 ConfigNode 和 DataNode 服务
# Unix/OS X
sbin/stop-standalone.sh
Expand All @@ -230,7 +230,7 @@ cd sbin
# 如果确定机器上仅有1个iotdb,可以使用下面命令清理残留进程
ps -ef|grep iotdb|grep -v grep|tr -s ' ' ' ' |cut -d ' ' -f2|xargs kill -9
```
b. 删除 data 和 logs 目录。
b. 删除 data 和 logs 目录。

说明:删除 data 目录是必要的,删除 logs 目录是为了纯净日志,非必需。
```Bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ remove datanode [datanode_id]

a. 结束所有 ConfigNode 和 DataNode 进程。

```Bash
```Bash
# 1. 停止 ConfigNode 和 DataNode 服务
# Unix/OS X
sbin/stop-standalone.sh
Expand All @@ -506,7 +506,7 @@ remove datanode [datanode_id]
# 如果确定机器上仅有1个iotdb,可以使用下面命令清理残留进程
ps -ef|grep iotdb|grep -v grep|tr -s ' ' ' ' |cut -d ' ' -f2|xargs kill -9
```
b. 删除 data 和 logs 目录。
b. 删除 data 和 logs 目录。

说明:删除 data 目录是必要的,删除 logs 目录是为了纯净日志,非必需。
```Bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ cd sbin

a. 结束所有 ConfigNode 和 DataNode 进程。

```Bash
```Bash
# 1. 停止 ConfigNode 和 DataNode 服务
# Unix/OS X
sbin/stop-standalone.sh
Expand All @@ -230,7 +230,7 @@ cd sbin
# 如果确定机器上仅有1个iotdb,可以使用下面命令清理残留进程
ps -ef|grep iotdb|grep -v grep|tr -s ' ' ' ' |cut -d ' ' -f2|xargs kill -9
```
b. 删除 data 和 logs 目录。
b. 删除 data 和 logs 目录。

说明:删除 data 目录是必要的,删除 logs 目录是为了纯净日志,非必需。
```Bash
Expand Down
Loading