想让自己部署的接口不随自己关闭xshell而停止运行
安装
yum install coreutils
使用
nohup 你使用的命令 &
exit //这里一定要输入 否则你关闭xshell窗口后仍然会把程序关掉
若要关闭进程
ps -ef|grep 进程名 //查询进程号
kill -9 进程号
想让自己部署的接口不随自己关闭xshell而停止运行
yum install coreutils
nohup 你使用的命令 &
exit //这里一定要输入 否则你关闭xshell窗口后仍然会把程序关掉
ps -ef|grep 进程名 //查询进程号
kill -9 进程号