美文网首页
Python后台运行—nohup

Python后台运行—nohup

作者: 一只飞 | 来源:发表于2021-04-07 18:02 被阅读0次

    应用场景:
    docker run -it --restart=always 188e54ba227d /sh/start.sh
    docker自启动脚本文件中需要后台执行python文件
    nohup python3 -u face.py >> /var/www/html/faceAlgorithm/my.log 2>&1 &
    加-u可以看到所有输出
    tail -f /var/www/html/faceAlgorithm/my.log
    参考:
    https://blog.csdn.net/weixin_42840933/article/details/85780125

    相关文章

      网友评论

          本文标题:Python后台运行—nohup

          本文链接:https://www.haomeiwen.com/subject/qqiukltx.html