기술노트

기술노트

게시물 상세
yum-cron을 이용한 자동 업데이트
작성자 : 관리자(jieun@ehostidc.co.kr)  작성일 : 2019-02-07   조회수 : 3669

OS : CentOS 7.6 64bit
 
1. yum-cron 패키지 설치
    yum –y install yum-cron


2.   설정 파일 수정

vi /etc/yum/yum-cron.conf

 

[commands]

# default                            = yum upgrade

# security                           = yum --security upgrade

# security-severity:Critical         = yum --sec-severity=Critical upgrade

# were downloaded, or applied.

/*yes로 설정 시 업데이트 가능해지면 메일로 알림*/

/*yes로 설정 시 업데이트 가능해지면 다운로드*/

/*yes로 설정 시 업데이트 가능해지면 시스템에 적용

# Maximum amout 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

# random_sleep is 0 or negative, the program will run immediately.

# 6*60 = 360

random_sleep = 360

/*동시에 다운로드를 시작해 트래픽을 많이 소모하지 않게 정해준 시간만큼 잠듬(단위:)*/

 

[email]

# The address to send email messages from.

# NOTE: 'localhost' will be replaced with the value of system_name.

email_from = root@localhost

/*이메일 메세지를 보낼 주소 설정

’localhost’는 현재 호스트네임으로 대체해야함*/

# List of addresses to send messages to.

email_to = root

/*메세지를 보낼 주소 목록 설정

여러 개 설정할 때에는 공백으로 구분*/

# Name of the host to connect to to send email messages.

email_host = localhost

/*메세지를 보낼 호스트 이름*/

 

3. yum-cron 시작 및 상태 체크

systemctl start yum-cron

sytstemctl status yum-cron

 

4. 재부팅 시에도 자동시작 설정

systemctl enable yum-cron 

 

이전글 iptables을 이용한 패킷 포워딩
다음글 리눅스 vi 편집기 사용법