/etc/yum/yum-cron.conf

/etc/yum/yum-cron.conf

다수의 RHEL 6 서버가 있고 "소프트웨어 업데이트 기본 설정" GUI를 사용하여 자동 업데이트를 구성하지만 최신 RHEL 7 서버에서 동일한 GUI를 찾을 수 없습니다.

이것이 내가 액세스하려는 GUI입니다. 나는 yum-cron어쩌구 저쩌구 같은 다른 도구에는 관심이 없습니다 . 저는 항상 그랬던 것처럼 이 GUI에 액세스하고 싶습니다.

메뉴에 없는 것 같은데 표시되게 하는 방법이 있나요?

여기에 이미지 설명을 입력하세요.

답변1

GUI는 아니지만 yum-cron이 원하는 대로 작동할 것 같습니다.

 yum install yum-cron

기본 구성은 다음과 같습니다. Apply-updates를 yes로 변경하면 요구 사항을 충족해야 합니다.

/etc/yum/yum-cron.conf

#  What kind of update to use:
# default                            = yum upgrade
# security                           = yum --security upgrade
# security-severity:Critical         = yum --sec-severity=Critical upgrade
# minimal                            = yum --bugfix upgrade-minimal
# minimal-security                   = yum --security upgrade-minimal
# minimal-security-severity:Critical =  --sec-severity=Critical upgrade-minimal
update_cmd = default

# Whether a message should be emitted when updates are available,
# were downloaded, or applied.
update_messages = yes

# Whether updates should be downloaded when they are available.
download_updates = yes

# Whether updates should be applied when they are available.  Note
# that download_updates must also be yes for the update to be applied.
apply_updates = no

# Maximum amount of time to randomly sleep, in minutes.  The program
# will sleep for a random amount of time between 0 and random_sleep
# minutes before running.  This is useful for e.g. staggering the
# times that multiple systems will access update servers.  If
# random_sleep is 0 or negative, the program will run immediately.
# 6*60 = 360
random_sleep = 360

관련 정보