博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nohup 详解
阅读量:5091 次
发布时间:2019-06-13

本文共 2749 字,大约阅读时间需要 9 分钟。

正文

nohup

nohup 命令运行由 Command参数和任何相关的 Arg参数指定的命令,忽略所有挂断(SIGHUP)信号。在注销后使用 nohup 命令运行后台中的程序。要运行后台中的 nohup 命令,添加 & ( 表示“and”的符号)到命令的尾部。

nohup 是 no hang up 的缩写,就是不挂断的意思。

nohup命令:如果你正在运行一个进程,而且你觉得在退出帐户时该进程还不会结束,那么可以使用nohup命令。该命令可以在你退出帐户/关闭终端之后继续运行相应的进程。

在缺省情况下该作业的所有输出都被重定向到一个名为nohup.out的文件中。

 

案例

1. nohup command > myout.file 2>&1 &   

在上面的例子中,0 – stdin (standard input),1 – stdout (standard output),2 – stderr (standard error) ;
2>&1是将标准错误(2)重定向到标准输出(&1),标准输出(&1)再被重定向输入到myout.file文件中。

2. 0 22 * * * /usr/bin/python /home/pu/download_pdf/download_dfcf_pdf_to_oss.py > /home/pu/download_pdf/download_dfcf_pdf_to_oss.log 2>&1

这是放在crontab中的定时任务,晚上22点时候怕这个任务,启动这个python的脚本,并把日志写在download_dfcf_pdf_to_oss.log文件中

 

nohup和&的区别

& : 指在后台运行

nohup : 不挂断的运行,注意并没有后台运行的功能,,就是指,用nohup运行命令可以使命令永久的执行下去,和用户终端没有关系,例如我们断开SSH连接都不会影响他的运行,注意了nohup没有后台运行的意思;&才是后台运行

 

&是指在后台运行,但当用户推出(挂起)的时候,命令自动也跟着退出

那么,我们可以巧妙的吧他们结合起来用就是
nohup COMMAND &
这样就能使命令永久的在后台执行
例如:

1. sh test.sh &  

将sh test.sh任务放到后台 ,即使关闭xshell退出当前session依然继续运行,但标准输出和标准错误信息会丢失(缺少的日志的输出)

将sh test.sh任务放到后台 ,关闭xshell,对应的任务也跟着停止。

2. nohup sh test.sh  
将sh test.sh任务放到后台,关闭标准输入,终端不再能够接收任何输入(标准输入),重定向标准输出和标准错误到当前目录下的nohup.out文件,即使关闭xshell退出当前session依然继续运行。
3. nohup sh test.sh  & 
将sh test.sh任务放到后台,但是依然可以使用标准输入,终端能够接收任何输入,重定向标准输出和标准错误到当前目录下的nohup.out文件,即使关闭xshell退出当前session依然继续运行

 

 

=======测试

[root@rhel7 tmp]# pwd/tmp[root@rhel7 tmp]# ls[root@rhel7 tmp]# nohup ping 127.0.0.1 & [1] 2547[root@rhel7 tmp]# nohup: ignoring input and appending output to ‘nohup.out’[root@rhel7 tmp]# lsnohup.out[root@rhel7 tmp]# tail -f nohup.out  --关闭当前连接,重新再打开一个ssh连接,使用tail -f nohup.out命令可以看到ping命令一直在执行64 bytes from 127.0.0.1: icmp_seq=21 ttl=64 time=0.077 ms64 bytes from 127.0.0.1: icmp_seq=22 ttl=64 time=0.044 ms64 bytes from 127.0.0.1: icmp_seq=23 ttl=64 time=0.129 ms64 bytes from 127.0.0.1: icmp_seq=24 ttl=64 time=0.084 ms64 bytes from 127.0.0.1: icmp_seq=25 ttl=64 time=0.085 ms64 bytes from 127.0.0.1: icmp_seq=26 ttl=64 time=0.085 ms64 bytes from 127.0.0.1: icmp_seq=27 ttl=64 time=0.079 ms64 bytes from 127.0.0.1: icmp_seq=28 ttl=64 time=0.078 ms64 bytes from 127.0.0.1: icmp_seq=29 ttl=64 time=0.078 ms

 

指定输出到lxjtest.log。如果不指定,则输出到nohup.out文件

[root@rhel7 tmp]# nohup ping 127.0.0.1 >lxjtest.log & [1] 2641[root@rhel7 tmp]# nohup: ignoring input and redirecting stderr to stdout[root@rhel7 tmp]# lslxjtest.log  nohup.out[root@rhel7 tmp]# tail -f lxjtest.log PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data.64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.039 ms64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.073 ms64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.043 ms64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.043 ms64 bytes from 127.0.0.1: icmp_seq=5 ttl=64 time=0.044 ms

 

转载于:https://www.cnblogs.com/lmh001/p/10291641.html

你可能感兴趣的文章
数论——扩展欧几里得算法与线性同余方程
查看>>
How to unblock Youku
查看>>
测试用例设计方法与举例说明
查看>>
个体工商营业执照PSD素材最新版下载
查看>>
微信的发展演变
查看>>
解决hive交互模式退格键乱码
查看>>
面试题题解
查看>>
理财入门类书籍读书笔记
查看>>
插入排序
查看>>
使用idea构建Hibernate5项目
查看>>
JMeter Webservice API测试计划
查看>>
『计算机视觉』物体检测之RefineDet系列
查看>>
MessageBox如何输出整数
查看>>
【置顶】通知:博客永久迁移 (欢迎来新家哦)
查看>>
JSON
查看>>
栈和队列 迷宫求解
查看>>
Java基础 第五章 循环结构(二) 笔记
查看>>
CSS3制作的一款很酷的错位式导航菜单,可用于博客
查看>>
Github C 编译器项目 8cc main函数中用到的 C库函数
查看>>
Java 获取字符串长度 length()
查看>>