Nohup运行python程序

时间:2018-08-27 17:17:40

标签: python nohup

我正在使用本地计算机上装有CentOS的远程服务器上工作,

我希望它运行以下代码:

nohup python3 search_large_files.py &

但是,它没有达到我的预期

[root@iz2ze9wve43n2nyuvmsfx5z ~]# ps ax| grep nohup
29360 pts/1    R+     0:00 grep --color=auto nohup

如何利用nohup运行python代码,以便在服务器工作时可以关闭电源并进入睡眠状态。

1 个答案:

答案 0 :(得分:4)

nohup将自己从正在运行的进程的名称中删除。因此,您无法在ps ax| grep nohup上找到它。

检查我制作的这个test.py文件:

import sys
import time
while True:
    time.sleep(0.5)
    sys.stdout.write('ok\n')
    sys.stdout.flush()

运行它:

nosklo@stackoverflow:~$ python3 test.py 
ok
ok
^CTraceback (most recent call last):
  File "test.py", line 4, in <module>
    time.sleep(0.5)
KeyboardInterrupt

现在有nohup

nosklo@stackoverflow:~$ nohup python3 test.py > foo.txt &
nohup: ignoring input and redirecting stderr to stdout
[1] 12453
nosklo@stackoverflow:~$ ps ax | grep -i nohup
nosklo  12548  0.0  0.0  15976   944 pts/17   S+   14:14   0:00 grep --color=auto -i nohup
nosklo@stackoverflow:~$ ps ax | grep -i python
nosklo  12453  0.0  0.0  31400  5660 pts/17   S    14:13   0:00 python3 test.py
nosklo  12528  0.0  0.0  15976   940 pts/17   S+   14:14   0:00 grep --color=auto -i python

如您所见,它的名称为pid 12453,但名称中没有nohup

nosklo@stackoverflow:~$ kill %1
[1]+  Terminated               nohup python3 test.py > foo.txt
nosklo@stackoverflow:~$ tail foo.txt
ok
ok
ok
....

它一直在工作。