LtyhShop/crmeb/shell/stopFront.sh
2025-03-17 18:17:29 +08:00

22 lines
472 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#接口项目站点路径(目录按照各自配置)
APP_PATH=/www/wwwroot/api.java.crmeb.net/
#jar包文件名称
APP_NAME=$APP_PATH/Crmeb-front.jar
echo "开始停止 Crmeb-admin 项目进程"
#查询进程并杀掉当前jar/java程序
pid=`ps -ef|grep $APP_NAME | grep -v grep | awk '{print $2}'`
echo "pid: $pid "
if [ $pid ];then
echo "pid: $pid"
kill -9 $pid
echo "Crmeb-admin 项目进程进程终止成功"
else
echo "未找到对应服务"
fi