|
@@ -1,14 +1,16 @@
|
|
|
# jenkins部署后目录问题
|
|
|
cd /usr/share/nginx/html/ax-node
|
|
|
+
|
|
|
+
|
|
|
+# 检查端口18061是否已被占用
|
|
|
+netstat -anp | grep 18061 > /dev/null 2>&1
|
|
|
+# 如果端口18061已被占用,则关闭占用该端口的进程
|
|
|
+if [ $? -eq 0 ]; then
|
|
|
+ pid=$(netstat -anp | grep 18061 | awk '{print $7}' | cut -d/ -f1)
|
|
|
+ kill -9 $pid
|
|
|
+fi
|
|
|
# 授权
|
|
|
chmod u+x ./app
|
|
|
-# 获取当前nohup进程的pid
|
|
|
-nohup_pid=$(pgrep -f "nohup" | grep "./app")
|
|
|
-# 如果找到当前nohup进程
|
|
|
-if [ -n "$nohup_pid" ]; then
|
|
|
- # 关闭当前nohup进程
|
|
|
- kill -9 $nohup_pid
|
|
|
-fi
|
|
|
# 获取当前时间
|
|
|
current_time=$(date +"%Y-%m-%d_%H:%M:%S")
|
|
|
# 启动新的nohup进程
|