安装远程日志服务器

将OVIRT虚拟化环境中的日志保存在统一的日志服务器更有利于调试以及故障排除。

在日志服务器上按照下面的步骤进行操作,可以单独安装一台日志服务器或者直接在OVIRTMANAGER上进行配置。

配置SELinux,允许rsyslogd进行网络传输

  1. # semanage port -a -t syslogd_port_t -p udp 514

编辑/etc/rsyslog.conf,增加以下配置:

  1. $template TmplAuth, "/var/log/%fromhost%/secure"
  2. $template TmplMsg, "/var/log/%fromhost%/messages"
  3. $RuleSet remote
  4. authpriv.*
  5. ?TmplAuth
  6. *.info,mail.none;authpriv.none,cron.none
  7. $RuleSet RSYSLOG_DefaultRuleset
  8. $InputUDPServerBindRuleset remote

取消下面2行的注释:

  1. #$ModLoad imudp
  2. #$UDPServerRun 514

重启rsyslog服务:

  1. # service rsyslog restart

日志服务器可以接受OVIRTNODE服务器的日志(messages和secure这2个日志文件中的日志类型)。