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.

manager-stop.sh 400 B

6 years ago
12345678910111213141516
  1. #!/bin/bash
  2. #启动Home路径
  3. BOOT_HOME=$(cd `dirname $0`;cd ../; pwd)
  4. #获取进程PID
  5. PID=`ps -ef | grep $BOOT_HOME/ext/ump-booter | grep -v grep | awk '{print $2}'`
  6. #通过Kill命令将进程杀死
  7. if [ -z "$PID" ]; then
  8. echo "Unable to find UMP PID. stop aborted."
  9. else
  10. echo "Start to kill PID = $PID ..."
  11. kill -9 $PID
  12. echo "Unified Management Platform has been stopped ..."
  13. fi

一个面向企业应用场景的通用区块链框架系统,能够作为企业级基础设施,为业务创新提供高效、灵活和安全的解决方案