新增 cron 指令碼 (在伺服器的 cron 裡面,添上你執行指令碼的命令,現在裡面有個,你可以參考下)

linuxMr發表於2018-03-27

liunx 小白 筆記 :
crontab -e 編輯

0 3 * * * nohup /opt/ccsing/php/bin/php /opt/ccsing/mysql/backup/mysql_backup.php >/dev/null 2>&1 &
0 3 * * * nohup ntpdate asia.pool.ntp.org >/dev/null 2>&1 &
0 3 1 * * nohup sh /cleanlog.sh >/dev/null 2>&1 &
0 3 * * * find /opt/ccsing/mysql/backup/mysql_backup/ -mtime +15 -type f|xargs rm -rf 2>&1 >/dev/null &
*/5 * * * * /opt/ccsing/php/bin/php /opt/ccsing/wwwroot/web/whhd_cms/scripts/transcode_asyn.php
*/5 * * * * /opt/ccsing/php/bin/php /opt/ccsing/wwwroot/web/klmy-new/RPC/videoTranscode.php

         crontab -l 檢視

            service crond restart 重啟

注意 :
            程式碼裡面去掉迴圈 ; 

相關文章