1. 程式人生 > >linux下後臺執行python程式並輸出到日誌檔案中。

linux下後臺執行python程式並輸出到日誌檔案中。

現有"test_read_pic_and_predict.py"程式要在後臺部署,裡面有輸出內容

執行命令: 

nohup python -u test_read_pic_and_predict.py > test.log 2>&1 &

。最後的 & 表示在後臺執行

。2 表示輸出錯誤資訊到提示符視窗

。1 表示輸出資訊到提示符視窗,1前面的&要注意新增,否則還會建立一個名為 1 的檔案

最後會把日誌檔案輸出到 test.log 檔案

檢視日誌檔案:

tail -f test.log
cat test.log