Linux

crontab 沒有結果

  • April 29, 2015

我在我的伺服器上設置了一個 cronjob,它應該每分鐘執行一次並將輸出儲存在給定的文件中。我一直在嘗試很多,看到了很多連結,但似乎沒有任何效果。以下是我寫的那行crontab -e

* * * * * /root/snmp_codes/snmp/.\/snmpstats.py -f file -g > logfile.log

誰能告訴我我犯了什麼錯誤?

修復路徑,使其正確。根據您的評論,很可能是/root/snmp_codes/snmp/snmpstats.py

您還可以修改命令,以便它像這樣擷取stderrstdout(將stderr2>&1附加到stdout,這樣您就可以將兩者都寫入):logfile.log

* * * * * /root/snmp_codes/snmp/snmpstats.py -f file -g > logfile.log 2>&1

引用自:https://unix.stackexchange.com/questions/199377