Linux - crontab排程啟動本地PHP網頁
我有一個需求,就是需要使用PHP撰寫執行某個例行事工作,
寫PHP最簡單,所以使用PHP CI寫了一個PHP頁面,網址可能是http://localhost/schedule/Jobs/process1這樣
而要讓他每30分鐘執行一次,
會需要用到crontab,加入排程,及呼叫開啟網頁的動作。
首先,要下指令
sudo vi /etc/crontab
使用vi指令i,表示要編輯
加入排程
*/30 * * * * root wget -o - http://localhost/schedule/Jobs/process1
然後按「Esc」鍵離開編輯,「:」鍵輸入指令「wq」儲存並離開
即可完成