作者:重庆刮刮匠 | 来源:互联网 | 2024-10-24 11:43
在Linux系统中,通过使用`nohup`命令可以实现在后台运行进程,并将输出重定向到指定文件。具体命令示例如下:`nohuphomesshroot/anaconda3/bin/gunicorn-cgunicorn.confflask_server:app>output.log2>&1&`。该命令不仅能够确保进程在用户退出终端后继续运行,还能将标准输出和错误输出重定向到`output.log`文件中,便于后续的数据处理和日志分析。
命令:nohup /home/sshroot/anaconda3/bin/gunicorn -c gunicorn.conf flask_server-prod_discard:app >console.log 2>&1 &
把python运行后的结果重定向到console.log文件中
最后用tail -f console.log查看结果