“Fatia de usuário criado-0.slice.” e “Iniciando a sessão 2025 do usuário root.” em / var / log / messages

9

Será que alguma mente bonita pode me explicar quais são essas entradas para "Criado fatia user-0.slice". e "Iniciando a Sessão 2025 do usuário root." em / var / log / messages no Centos 7 por favor?

[root@bew /]# tail -f /var/log/messages
May 26 21:20:01 bew systemd: Created slice user-0.slice.
May 26 21:20:01 bew systemd: Starting Session 2025 of user root.
May 26 21:20:01 bew systemd: Started Session 2025 of user root.
May 26 22:22:33 bew systemd: Stopping System Logging Service...
May 26 22:22:33 bew systemd: Starting System Logging Service...
May 26 22:22:33 bew systemd: Started System Logging Service.
May 26 22:30:01 bew systemd: Created slice user-0.slice.
May 26 22:30:01 bew systemd: Starting Session 2026 of user root.
May 26 22:30:01 bew systemd: Started Session 2026 of user root.

Obrigado pessoal.

    
por marbew 27.05.2015 / 00:00

2 respostas

4

Estas são mensagens de baixa prioridade "info" relacionadas ao gerenciamento de sessões e recursos. Você pode evitá-los via

# systemd-analyze set-log-level notice
    
por 03.08.2015 / 14:48
1

De acordo com o Red Hat ,

These messages are normal and expected -- they will be seen any time a user logs in.

Se você não quiser ver essas mensagens, a Red Hat propõe uma solução alternativa para evitar que elas sejam registradas enquanto ainda mantém outras mensagens info -level do systemd service:

  1. Modifique rsyslog para criar um filtro de descarte executando o seguinte comando:

    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
    
  2. Reinicie o rsyslog service:

    systemctl restart rsyslog
    
por 25.07.2017 / 17:12