Table of Contents
nohup
# 标准输出和标准错误缺省会被重定向到 nohup.out 文件中 nohup conmmand & # 指定重定向文件名 nohup command > myout.file 2>&1 &
查看后台任务
jobs
显示后台运行的任务, 显示的列表中第一个为任务 idfg N
命令将后台任务切换到前台, N 为任务 id
参考:
&
command > /dev/null 2>&1 &
- 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 #输出日志和错误
参考: