2024-01-23 15:53:51 +08:00
|
|
|
#!/bin/sh
|
2024-01-23 15:52:03 +08:00
|
|
|
echo "--------删除modules demo service开始--------------"
|
|
|
|
|
P_ID=`ps -ef | grep -w demo4bonus-0.0.1 | grep -v "grep" | awk '{print $2}'`
|
|
|
|
|
if [ "$P_ID" == "" ]; then
|
|
|
|
|
echo "===modules demo service process not exists or stop success"
|
|
|
|
|
else
|
|
|
|
|
kill -9 $P_ID
|
|
|
|
|
echo "modules demo service killed success"
|
|
|
|
|
fi
|