服务器运行python

python xx.py

后台运行python

& 符号 代表 后台运行,如果用户登出后,脚本也就自动退出了

python xx.py &

nohup 保证了用户登出之后,脚本还会继续后台运行

nohup python xxx.py &
nohup python xx.py > /PATH/run.log 2>&1 &

0 – stdin (standard input),1 – stdout (standard output),2 – stderr (standard error)

2>&1是将标准错误(2)重定向到标准输出(&1),标准输出(&1)再被重定向输入到run.log文件中。