python 后台运行程序

#### 启动命令

nohup python -u 运行的文件.py > 输出日志名.out 2>&1 &

 0 – stdin (standard input)

 1 – stdout (standard output)

 2 – stderr (standard error)

& 是让命令在后台执行

out.log 是将信息输出到out.log日志中

2>&1 是将标准错误信息转变成标准输出,将错误信息输出到out.log 日志里面


#### 查看日志

tail -f 输出日志名.out

你可能感兴趣的:(python 后台运行程序)