xshell一退出,nodejs项目就停止

xshell连接阿里云的centos,然后运行通过npm start运行一个node项目,关闭xshell后,node项目也没运行了,这个该怎么弄啊?

阅读 10.7k
7 个回答

你去查查nohup这个命令。

通过&或者ctrl+c把任务转到后台执行即可。

https://github.com/Unitech/PM2
线上部署,使用pm2能自动守护进程。

PM2 is a production process manager for Node.js applications with a built-in load balancer. It allows you to keep applications alive forever, to reload them without downtime and to facilitate common system admin tasks.

screen 是个利器

写了个简单的sh脚本,把npm start命令放入。然后 nohup /root/test.sh & 竟然可以了

新手上路,请多包涵

forever

screen -dmS win
screen -l
推荐问题