run-ax-node.sh 416 B

123456789101112131415
  1. # jenkins部署后目录问题
  2. cd /usr/share/nginx/html/ax-node
  3. # 授权
  4. chmod u+x ./app
  5. # 获取当前nohup进程的pid
  6. nohup_pid=$(pgrep -f "nohup" | grep "./app")
  7. # 如果找到当前nohup进程
  8. if [ -n "$nohup_pid" ]; then
  9. # 关闭当前nohup进程
  10. kill -9 $nohup_pid
  11. fi
  12. # 获取当前时间
  13. current_time=$(date +"%Y-%m-%d_%H:%M:%S")
  14. # 启动新的nohup进程
  15. nohup ./app > "ax-node_$current_time.log" 2>&1 &