You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- PID=`ps -ef | grep "java -jar peer-" | grep -v grep | awk '{print $2}'`
- PROC_PATH=`ps -ef | grep "java -jar peer-" | grep -v grep | awk '{print $8}'`
- echo "Stopping peer[$PID][$PROC_PATH] ......"
- kill 9 $PID
-
- echo "Peer stopped!"
|