/var/log/message에서 다음을 볼 수 있습니다.
Jan 08 06:01:01 kafka1 systemd: Started Session 37735 of user root.
Jan 08 06:01:01 kafka1 systemd: Starting Session 37735 of user root.
어떤 서비스인지 어떻게 알 수 있나요?
로그에서 서비스가 1분마다 다시 시작되는 것을 볼 수 있습니다.
답변1
이러한 메시지는 사용자가 로그인할 때마다 자동으로 생성됩니다. 삭제하려는 경우 Red Hat 지원 페이지에서 삭제 방법을 확인할 수 있습니다.
https://access.redhat.com/solutions/1564823
지금 바로:
/var/log/messages에서 이러한 로그 항목을 억제하려면 rsyslog를 사용하여 삭제 필터를 생성하십시오. 예를 들어 다음 명령을 실행하십시오.
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