后台运行
Table of Contents

nohup

# 标准输出和标准错误缺省会被重定向到 nohup.out 文件中
nohup conmmand &
# 指定重定向文件名
nohup command > myout.file 2>&1 &

查看后台任务

参考:

使用nohup让程序在远程主机后台运行

&

command > /dev/null 2>&1 &

参考:

Linux Shell 1>/dev/null 2>&1 含义

nodejs forever

安装

$ sudo npm install forever -g

使用

$ forever start app.js          #启动
$ forever stop app.js           #关闭
$ forever start -l forever.log -o out.log -e err.log app.js   #输出日志和错误

参考:

forever-github