Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

MCCS 의 로그를 시스템로그에 추가하려면 다음의 추가 설정이 필요합니다.

/etc/rsyslog.conf 의 다음 두 라인의 주석을 해제 합니다.

Code Block
title주석 해제 전의 /etc/rsyslog.conf
...
#$ModLoad imudp
#$UDPServerRun 514
...
Code Block
title주석 해제 후의 /etc/rsyslog.conf
...
$ModLoad imudp
$UDPServerRun 514
...


설정이 완료되면 다음의 명령으로 rsyslog 서비스를 재 시작합니다.

Code Block
# service rsyslog restart
또는
# systemctl restart rsyslog

...