1. 命令
nohup java -jar publicApply.jar >publicApplyLog.txt 2>&1 &
2. 说明
(1)为防止当前ssh窗口被锁定,按CTRL + C打断程序运行,或直接关闭窗口,程序退出,使用nohup ,不挂断运行命令
(2)当使用 nohup 命令时,程序执行日志默认到nohup.out的文件中,除非另外指定输出文件。比如上面的: publicApplyLog.txt
(3)jobs:可通过jobs命令查看后台运行任务
fg:fg 编号 ,将某个任务调回前台控制,此时再按按CTRL + C打断程序运行
(4) 关闭进程
ps -ef | grep publicApply.jar // 根据应用名查询进程号 netstat -naop | grep 4526 // 根据进程号查询端口 lsof -i:8080 // 根据端口查询进程、应用 kill -9 4526 // 强制关闭进程