run-ax-node.sh 485 B

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