檢視系統的計畫任務
cat /etc/crontab
eg.[root@localhost ~]# cat /etc/crontab
shell=/bin/bash
path=/sbin:/bin:/usr/sbin:/usr/bin
mailto=root
# for details see man 4 crontabs
# example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) or jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (sunday=0 or 7) or sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
設定系統的計畫任務
vim /etc/contab
編輯,儲存,退出即可。
檢視計畫指令碼的執行日誌
cd /var/log
tail -f /var/log/cron#可實時檢視指令碼執**況
清空日誌
cat /dev/null > ***.log
eg.cat /dev/null > access.log #清空access.log
CentOS 計畫任務
cron是乙個linux下的定時執行工具,可以在無需人工干預的情況下執行作業。由於cron 是linux的內建服務,但它不自動起來,可以用以下的方法啟動 關閉這個服務 sbin service crond start 啟動服務 sbin service crond stop 關閉服務 sbin se...
談一談PHP計畫任務
公司所用計畫任務均是大概這樣子的 2 root cd opt x test s1 html x admin php index.php task testone dev null 2 1 2 root cd opt x test s1 html x admin php index.php task ...
centos中的計畫任務
計畫任務可以讓計算機定期或者在未來某個時間執行一次設定的任務。比如每天凌晨一點鐘自動重啟,之類的。centos中主要有兩個計畫任務工具,at和cron,還有乙個batch是系統工具,空閒時間建立mandb之類資訊的工具。我們主要來說at和cron at工具依靠後台服務工作 服務檔案在centos7之...