From 6b9d69b12267bcb9baae43eaa5ba35898134ba97 Mon Sep 17 00:00:00 2001 From: plum-lihui Date: Sat, 16 Apr 2022 10:13:48 +0800 Subject: [PATCH] [test: stop taosd by kill -9 pid] --- tests/script/sh/stop_dnodes.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/script/sh/stop_dnodes.sh b/tests/script/sh/stop_dnodes.sh index 4c6d8e0351..b431c0627c 100755 --- a/tests/script/sh/stop_dnodes.sh +++ b/tests/script/sh/stop_dnodes.sh @@ -12,7 +12,8 @@ fi PID=`ps -ef|grep -w taosd | grep -v grep | awk '{print $2}'` while [ -n "$PID" ]; do echo kill -9 $PID - pkill -9 taosd + #pkill -9 taosd + kill -9 $PID echo "Killing processes locking on port 6030" if [ "$OS_TYPE" != "Darwin" ]; then fuser -k -n tcp 6030