Linux | CentOS 6.x 이상 centos 7.x 에서 기존 방식의 cron 사용
페이지 정보
작성자 주인장 작성일2016. 07. 02. 22:23 조회17,953회 댓글0건관련링크
본문
배너수익은 앱개발과 개선에 사용합니다.
기본 방식의 cron과 동일하게 사용하기.
[root@localhost ~]# yum install cronie-noanacron
[root@localhost ~]# yum remove cronie-anacron
[root@localhost ~]# ls -l /etc/cron.d
total 12
-rw-r--r-- 1 root root 113 Nov 10 2015 0hourly
-rw-r--r-- 1 root root 326 Nov 10 2015 dailyjobs
-rw-r--r--. 1 root root 108 Oct 11 2013 raid-check
[root@localhost ~]#
[root@localhost ~]# cat /etc/cron.d/dailyjobs
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
# run-parts
02 4 * * * root [ ! -f /etc/cron.hourly/0anacron ] && run-parts /etc/cron.daily
22 4 * * 0 root [ ! -f /etc/cron.hourly/0anacron ] && run-parts /etc/cron.weekly
42 4 1 * * root [ ! -f /etc/cron.hourly/0anacron ] && run-parts /etc/cron.monthly
[root@localhost ~]#
[root@localhost ~]# cat /etc/cron.daily/time_sync.sh
#!/bin/bash
#/usr/bin/rdate -s zero.bora.net && date && clock -r && clock -w > /dev/null 2>&1
/usr/bin/rdate -s zero.bora.net && date && clock -w > /dev/null 2>&1
[root@localhost ~]#
댓글목록
등록된 댓글이 없습니다.