因为关闭了ssh,脚本也就不运行了, 有什么办法可以后台运行脚本呢? |
简单的用 screen 或者 tmux 一般的写成系统服务 .service 用python supervisord 都可以实现 |
后面加个 &就可以 |
screen nohup 等等 |
screen supervisor nohup 还有service |
screen supervisor nohup pm2 还有service |
screen |
感谢大佬指点。学到了。 对于我来说,2楼的答案最简单。。 其他的尝试了一下可能还需要安装什么,以后在研究吧。 |
https://blog.jianrry.com/post/linux-background-command/ |
nohup 要执行的命令 & |