我们经常会碰到这样的问题,用 telnet/ssh 登录了远程的 Linux 服务器,运行了一些耗时较长的任务, 结果却由于网络的不稳定导致任务中途失败。如何让命令提交后不受本地关闭终端窗口/网络断开连接的干扰呢?下面举了一些例子, 您可以针对不同的场景选择不同的方式来处理这个问题。
方式一:nohup
nohup 的使用是十分方便的,只需在要处理的命令前加上 nohup 即可,标准输出和标准错误缺省会被重定向到 nohup.out 文件中。一般我们可在结尾加上"&"来将命令同时放入后台运行,也可用">filename 2>&1"来更改缺省的重定向文件名。
示例:
[root@iZ25k9j42dlZ home]# nohup wget https://www.jianshu.com/p/48a65d33760d
nohup: ignoring input and appending output to `nohup.out'
方式二:setsid
setsid 的使用也是非常方便的,也只需在要处理的命令前加上 setsid 即可。
示例:
[root@iZ25k9j42dlZ home]# setsid ping www.baidu.com
[root@iZ25k9j42dlZ home]# PING www.a.shifen.com (220.181.112.244) 56(84) bytes of data.
64 bytes from 220.181.112.244: icmp_seq=1 ttl=54 time=3.22 ms
64 bytes from 220.181.112.244: icmp_seq=2 ttl=54 time=3.22 ms
64 bytes from 220.181.112.244: icmp_seq=3 ttl=54 time=3.22 ms
64 bytes from 220.181.112.244: icmp_seq=4 ttl=54 time=3.15 ms
64 bytes from 220.181.112.244: icmp_seq=5 ttl=54 time=3.19 ms
64 bytes from 220.181.112.244: icmp_seq=6 ttl=54 time=3.22 ms
^C
[root@iZ25k9j42dlZ ~]# ps -ef|grep ping
root 8003 1 0 10:05 ? 00:00:00 ping www.baidu.com
root 8020 8004 0 10:06 pts/2 00:00:00 grep ping
方式三:&
在命令结尾添加 & 即可。
示例:
[root@iZ25k9j42dlZ ~]# ping www.baidu.com &
[1] 8053
[root@iZ25k9j42dlZ ~]# PING www.a.shifen.com (220.181.112.244) 56(84) bytes of data.
64 bytes from 220.181.112.244: icmp_seq=1 ttl=54 time=3.21 ms
64 bytes from 220.181.112.244: icmp_seq=2 ttl=54 time=3.20 ms
64 bytes from 220.181.112.244: icmp_seq=3 ttl=54 time=3.22 ms
64 bytes from 220.181.112.244: icmp_seq=4 ttl=54 time=3.25 ms
64 bytes from 220.181.112.244: icmp_seq=5 ttl=54 time=3.19 ms
^C
方式四:disown
以上三种方式,都是提交命令时才能使用。但是如果我们未加任何处理就已经提交了命令,该如何补救呢?
答案就是用 Ctrl-z了!
在我们的日常工作中,我们可以用 CTRL-z 来将当前进程挂起到后台暂停运行,执行一些别的操作,然后再用 fg 来将挂起的进程重新放回前台(也可用 bg 来将挂起的进程放在后台)继续运行。这样我们就可以在一个终端内灵活切换运行多个任务,这一点在调试代码时尤为有用。因为将代码编辑器挂起到后台再重新放回时,光标定位仍然停留在上次挂起时的位置,避免了重新定位的麻烦。
[root@pvcent107 build]# cp -r testLargeFile largeFile2
[1]+ Stopped cp -i -r testLargeFile largeFile2
[root@pvcent107 build]# bg %1
[1]+ cp -i -r testLargeFile largeFile2 &
[root@pvcent107 build]# jobs
[1]+ Running cp -i -r testLargeFile largeFile2 &
[root@pvcent107 build]# disown -h %1
[root@pvcent107 build]# ps -ef |grep largeFile2
root 5790 5577 1 10:04 pts/3 00:00:00 cp -i -r testLargeFile largeFile2
root 5824 5577 0 10:05 pts/3 00:00:00 grep largeFile2
[root@pvcent107 build]#
方式五:screen
如果有大量这种命令需要在稳定的后台里运行,如何避免对每条命令都做这样的操作呢?
此时最方便的方法就是 screen 了。简单的说,screen 提供了 ANSI/VT100 的终端模拟器,使它能够在一个真实终端下运行多个全屏的伪终端。
使用 screen 很方便,有以下几个常用选项:
- 用screen -dmS session name来建立一个处于断开模式下的会话(并指定其会话名)。
- 用screen -list 来列出所有会话。
- 用screen -r session name来重新连接指定会话。
- 用快捷键Ctrl-a d 来暂时断开当前会话。
示例:
[root@pvcent107 ~]# screen -dmS Urumchi
[root@pvcent107 ~]# screen -list
There is a screen on:
12842.Urumchi (Detached)
1 Socket in /tmp/screens/S-root.
[root@pvcent107 ~]# screen -r Urumchi