반응형
CentOS7 혹은 RHEL7 이상 버전부터 /var/log/messages 에 아래와 같은 메시지가 넘쳐나는걸 흔히 볼 수 있을것이다.
# cat /var/log/messages
Oct 19 14:00:01 localhost systemd: Started Session 13 of user root.Oct 19 14:00:01 localhost systemd: Starting Session 13 of user root.Oct 19 14:01:01 localhost systemd: Started Session 14 of user root.Oct 19 14:01:01 localhost systemd: Starting Session 14 of user root.----------------------------- 이하 생략 --------------------------------
메시지 확인에 불편함을 느낀다면 없애도록 하자
해결방안
# echo 'if $programname == "systemd" and ($msg contains "Starting Session" or $msg contains "Started Session" or $msg contains "Created slice" or $msg contains "Starting user-" or $msg contains "Starting User Slice of" or $msg contains "Removed session" or $msg contains "Removed slice User Slice of" or $msg contains "Stopping User Slice of") then stop' >/etc/rsyslog.d/ignore-systemd-session-slice.conf
위 명령을 복사해서 그대로 실행하면 된다.
그다음 rsyslog를 재시작 해준다
# systemctl restart rsyslog
끝
반응형
'리눅스' 카테고리의 다른 글
[RHEL] 레드햇 서브스크립션(Subscription) 확인 방법 (0) | 2018.12.03 |
---|---|
[Linux] Apache(아파치) httpd.conf 기본 구성 (0) | 2018.10.29 |
[Linux] 주석 없는 라인만 보고싶다면? grep -v 명령어 (0) | 2018.10.26 |
[Linux] rsyslog 설정 및 관리 (1) | 2018.10.26 |
[Linux/CentOS7] 관리자(root) 패스워드 찾기 - 싱글모드 부팅 (0) | 2018.10.17 |
[Linux] 리눅스 파일 검색, 찾기 명령어 find 사용법 정리 (0) | 2018.10.12 |
[Linux] vmsvc: Auth Authenticate_User: authentication failure; 에러로그 해결방법 (0) | 2018.10.11 |
[Linux] kernel: set_rtc_mmss: can't update from N to N messages 로그 해결방법 (0) | 2018.10.11 |