[root@centos001 ~]# 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
0 3 1-10 */2 2,5 /bin/bash /usr/local/sbin/123.sh > /tmp/123.sh >>/tmp/123.log>>/tmp/123. log
注:該服務如不開啓,將不會執行計劃任務
1.開啓服務命令:sytemctl start crond
2.查看服務是否開啓命令一:ps aux |grep cron 如有最下的命令 則表示已開啓html
[root@centos001 ~]# ps aux |grep cron root 740 0.0 0.1 126232 1676 ? Ss 12月04 0:00 /usr/sbin/crond -n root 6460 0.0 0.0 112676 984 pts/0 S+ 01:11 0:00 grep --color=autocron
3..查看服務是否開啓命令二:systemctl status crond
linux
[root@centos001 ~]# ls /etc/init.d/ functions netconsole network README
[root@centos001 ~]# chkconfig --list 注:該輸出結果只顯示 SysV 服務,並不包含 原生 systemd 服務。SysV 配置數據 可能被原生 systemd 配置覆蓋。 要列出 systemd 服務,請執行 'systemctl list-unit-files'。 查看在具體 target 啓用的服務請執行 'systemctl list-dependencies [target]'。 netconsole 0:關 1:關 2:關 3:關 4:關 5:關 6:關 network 0:關 1:關 2:開 3:開 4:開 5:開 6:關
[root@centos001 ~]# chkconfig --level 3 network off [root@centos001 ~]# chkconfig --list 注:該輸出結果只顯示 SysV 服務,並不包含 原生 systemd 服務。SysV 配置數據 可能被原生 systemd 配置覆蓋。 要列出 systemd 服務,請執行 'systemctl list-unit-files'。 查看在具體 target 啓用的服務請執行 'systemctl list-dependencies [target]'。 netconsole 0:關 1:關 2:關 3:關 4:關 5:關 6:關 network 0:關 1:關[root@centos001 ~]# chkconfig --level 345 network off [root@centos001 ~]# chkconfig --list 注:該輸出結果只顯示 SysV 服務,並不包含 原生 systemd 服務。SysV 配置數據 可能被原生 systemd 配置覆蓋。 要列出 systemd 服務,請執行 'systemctl list-unit-files'。 查看在具體 target 啓用的服務請執行 'systemctl list-dependencies [target]'。 netconsole 0:關 1:關 2:關 3:關 4:關 5:關 6:關 network 0:關 1:關 2:開 3:關 4:關 5:關 6:關 2:開 3:關 4:開 5:開 6:關
chkconfig --del network chkconfig --add network
系統爲了方便管理用target來管理unit
systemctl list-unit-files --type=target
systemctl list-dependencies multi-user.target //查看指定target下面有哪些unit
systemctl get-default //查看系統默認的target
systemctl set-default multi-user.target
一個service屬於一種類型的unit
多個unit組成了一個target
一個target裏面包含了多個service
cat /usr/lib/systemd/system/sshd.service //看[install]部分centos
anacron
http://blog.csdn.net/strikers1982/article/details/4787226bash
xinetd服(默認機器沒有安裝這個服務,須要yum install xinetd安裝)
http://blog.sina.com.cn/s/blog_465bbe6b010000vi.html併發
systemd自定義啓動腳本
http://www.jb51.net/article/100457.htmssh