crontab에 yum-cron을 추가해야 합니까?

crontab에 yum-cron을 추가해야 합니까?

콘텐츠 /etc/sysconfig/yum-cron:

15:14:57 # vim /etc/sysconfig/yum-cron

# if MAILTO is set and the mail command is available, the mail command
# is used to deliver yum output

# by default MAILTO is unset, so crond mails the output by itself
# example:  MAILTO=root
[email protected]

# you may set SYSTEMNAME if you want your yum emails tagged differently
SYSTEMNAME="UHSPAASTREAM06"

# you may set DAYS_OF_WEEK to the days of the week you want to run
# default is every day
DAYS_OF_WEEK="12345"

# which day should it do cleanup on?  defaults to 0 (Sunday).  If this day 
isn't in the
# DAYS_OF_WEEK above, it'll never happen
CLEANDAY="2"

# set to yes to make the yum-cron service to wait for transactions to 
complete
SERVICE_WAITS=yes

# set maximum time period (in seconds) for the yum-cron service to wait for
# transactions to complete.  The default is 300 seconds (5 minutes)
SERVICE_WAIT_TIME=300

매주 오전 11시에 yum-cron을 실행하고 싶습니다. 시간을 지정할 수 있는 곳은 어디에도 없습니다. 크론 탭을 만들어야 합니까?

답변1

설치되면 yum-cron다음과 관련된 새 파일이 생성됩니다.cron/etc/cron.daily/0yum-daily.cron/etc/cron.hourly/0yum-hourly.cron

시스템에 이 yum-utils패키지가 포함되어 있으면 어떤 파일이 포함되어 있는지 확인할 수 있습니다 repoquery -l yum-cron. 이 명령은 다음 코드 조각과 같은 출력을 제공합니다.

/etc/cron.daily/0yum-daily.cron
/etc/cron.hourly/0yum-hourly.cron
/etc/yum/yum-cron-hourly.conf
/etc/yum/yum-cron.conf
/usr/lib/systemd/system/yum-cron.service
/usr/sbin/yum-cron
/usr/share/doc/yum-cron-3.4.3
/usr/share/doc/yum-cron-3.4.3/COPYING
/usr/share/man/man8/yum-cron.8

즉시 우리는 매뉴얼이 무엇을 말하는지 볼 수 있습니다 man yum-cron. 기본적으로 그다지 많지는 않습니다. 구성 파일이 명령줄 매개변수를 통해 사용된다는 것을 나타냅니다.

각 디렉토리, /etc/cron.daily, /etc/cron.weekly및 는 /etc/cron.monthly주기적으로 실행되어야 하는 스크립트를 저장하기 위한 것입니다 cron. 각 주기의 정확한 시간은 cron다음과 같은 명령을 cat /etc/anacrontab사용 하여 구성 파일을 읽어 표시할 수 있습니다. 서버 가 많습니다 cron. 나는 사용한다 anacron. 다양한 패키지를 사용할 수 있습니다 cron.

cron따라서 아니요. 작업이 이미 존재하므로 작업을 생성할 필요가 없습니다 . 한 사람이 할 수 있는...

  • cron기본 일정 수락,
  • 기본 cron일정을 수정하거나
  • 크론 작업을 삭제 yum-cron하고 자체 작업을 생성합니다 cron( crontab -e).

관련 정보