|
@@ -1,3 +1,16 @@
|
|
|
-sleep 5
|
|
|
+# jenkins部署后目录问题
|
|
|
+cd /usr/share/nginx/html/ax-node
|
|
|
+# 授权
|
|
|
chmod u+x ./app
|
|
|
-nohup ./app > ax-node.log 2>&1 &
|
|
|
+# 获取当前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进程
|
|
|
+nohup ./app > "ax-node_$current_time.log" 2>&1 &
|