背景
很多时候我们需要在后台运行一些命令,如启动flask,之前是通过命令行后加上&使其在后台运行,但加&这种模式,日志记录有一些问题,然后当终端关闭的时候也会中断;
当用户注销(logout)或者网络断开时,终端会收到 HUP(hangup)信号从而关闭其所有子进程。因此,我们的解决办法就有两种途径:要么让进程忽略 HUP 信号,要么让进程运行在新的会话里从而成为不属于此终端的子进程。
解决方法
& 可以使命令在后台运行
nohup 可以让进程忽略HUP信号,结合起来
查看nohup --help
Usage: nohup COMMAND [ARG]... or: nohup OPTION
Run COMMAND, ignoring hangup signals. --help display this help and exit
--version output version information and exit
|
nohup 的使用是十分方便的,只需在要处理的命令前加上 nohup 即可,标准输出和标准错误缺省会被重定向到 nohup.out 文件中。一般我们可在结尾加上"&"来将命令同时放入后台运行,也可用">filename 2>&1"
来更改缺省的重定向文件名。
p.s. 2>&1的意思是把错误信息重定向到标准输出
nohump demo:
[root @pvcent107 ~]# nohup ping www.ibm.com &
[ 1 ] 3059
nohup: appending output to `nohup.out' [root @pvcent107 ~]# ps -ef |grep 3059
root 3059 984 0 21 : 06 pts/ 3 00 : 00 : 00 ping www.ibm.com
root 3067 984 0 21 : 06 pts/ 3 00 : 00 : 00 grep 3059
[root @pvcent107 ~]#
|
详情可参考:
https://www.ibm.com/developerworks/cn/linux/l-cn-nohup/index.html
http://www.cnblogs.com/itech/archive/0001/01/01/1525590.html
http://blog.csdn.net/zhang_red/article/details/52789691
虽千万人,吾往矣!