messages(2)
-
linux messages에 dhclient log flooding
- 개요 리눅스 서버를 운영하다 보면 dhclient log 관련 로그가 system log 파일을 점유하는 현상이 발생할 수 있다. - 해결 방법 ''echo -e ':programname,isequal,"dhclient" stop\n:programname,isequal,"ec2net" stop' > /etc/rsyslog.d/ignore-dhclient-log.conf'' systemctl restart rsyslog
2020.11.03 -
linux messages에 systemd: Started Session 과점유 현상
- 개요 리눅스 서버를 운영하다 보면 systemd: Started Session 관련 로그가 system log 파일을 점유하는 현상이 발생할 수 있다. - 해결 방법 ''echo 'if $programname == "systemd" and ($msg contains "Starting Session" or $msg contains "Started Session" or $msg contains "Created slice" or $msg contains "Starting user-") then stop'>/etc/rsyslog.d/ignore-systemd-session-slice.conf'' systemctl restart rsyslog
2020.11.03