部署命令
nohup java -jar xxx.jar $
查看日志
tailf nohup.out
停止项目
查询到项目的pid
ps -ef | grep xxx.jar
然后使用kill pid
结束进程
Q.E.D.
相遇
·2021-08-21
·
nohup java -jar xxx.jar $
tailf nohup.out
查询到项目的pid
ps -ef | grep xxx.jar
然后使用kill pid
结束进程
Q.E.D.