遇到db server 的load avg偏高的现象,查到最后发现“凶手”是mcelog.cron

 它的代码如下:

#!/bin/bash

if [ -/proc/xen ] && [ `cat /sys/hypervisor/uuid` != "00000000-0000-0000-0000-000000000000" ]; then
        
# this is a PV Xen guest.  Do not run mcelog.
        exit 1;
else
        
/usr/sbin/mcelog --ignorenodev --filter >> /var/log/mcelog
fi

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-05-23
  • 2022-02-20
  • 2022-01-03
  • 2021-09-28
  • 2021-10-16
猜你喜欢
  • 2021-10-18
  • 2022-12-23
  • 2021-12-12
  • 2022-12-23
  • 2021-08-03
  • 2021-11-21
  • 2022-12-23
相关资源
相似解决方案