用screen让自己的项目在服务器上保持运行

Posted HolaWorld

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用screen让自己的项目在服务器上保持运行相关的知识,希望对你有一定的参考价值。

安装:
sudo apt-get install screen

使用:
1.执行如下命令,创建screen窗口。
screen -S [$Name]
注:[$Name]用来标注screen窗口用途。

2.执行如下命令,列出screen窗口。
screen -ls

3.当需要运行脚本、执行程序时,在命令前添加screen即可。

4.若需要继续工作时,登录实例,然后执行如下命令,恢复会话即可。
screen -r -d PID


参考:
https://help.aliyun.com/knowledge_detail/42523.html?spm=5176.2000002.0.0.616d7b0fuIjmqa
https://blog.csdn.net/floraruo/article/details/105334616

以上是关于用screen让自己的项目在服务器上保持运行的主要内容,如果未能解决你的问题,请参考以下文章

应用程序关闭后保持广播接收器运行

如何在云服务器上自动运行.py文件

如何让机器保持清醒?

screen命令常用参数使用

服务器后台运行程序

如何在关闭ssh连接的情况下,让程序继续运行?