본문 바로가기
리눅스

[CentOS7 / RHEL 7] systemd : start session ## of user root 해결방법

by 공대냥이 2018. 10. 23.
반응형

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

 

반응형