zoukankan      html  css  js  c++  java
  • linux关闭ACPI电源管理模块

    一、运行环境

    # cat /etc/redhat-release 
    CentOS release 6.2 (Final)
    # uname -a
    Linux web-server-40 2.6.32-220.el6.x86_64 #1 SMP Tue Dec 6 19:48:22 GMT 2011 x86_64 x86_64 x86_64 GNU/Linux
    
    # 硬件
    DELL R420 SATA 7.2K 500G *2
    # CPU
    Intel(R) Xeon(R) CPU E5-2420 0 @ 1.90GHz

    二、服务器异常重启日志

    # grep Error /var/log/messages
    Dec  6 05:15:24 web-server-40 kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
    Dec  6 05:15:24 web-server-40 kernel: ACPI Error: No handler for Region [SYSI] (ffff88022accf420) [IPMI] (20090903/evregion-319)
    Dec  6 05:15:24 web-server-40 kernel: ACPI Error: Region IPMI(7) has no handler (20090903/exfldio-295)
    Dec  6 05:15:24 web-server-40 kernel: ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PMI0._GHL] (Node ffff88022acd38f8), AE_NOT_EXIST
    Dec  6 05:15:24 web-server-40 kernel: ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PMI0._PMC] (Node ffff88022acd3998), AE_NOT_EXIST
    
    # grep Error /var/log/dmesg
    ERST: Error Record Serialization Table (ERST) support is initialized.
    ACPI Error: No handler for Region [SYSI] (ffff88022accf420) [IPMI] (20090903/evregion-319)
    ACPI Error: Region IPMI(7) has no handler (20090903/exfldio-295)
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PMI0._GHL] (Node ffff88022acd38f8), AE_NOT_EXIST
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PMI0._PMC] (Node ffff88022acd3998), AE_NOT_EXIST

    三、关闭acpi服务

    /etc/init.d/acpid stop
    chkconfig acpid off
    
    # vim /boot/grub/grub.conf
    在kernel行最后加上 acpi=off noacip
  • 相关阅读:
    cnblogs blogStats All In One
    ESLint & vue template indent validate All In One
    vue & elementui 表单验证 bug All In One
    vue 表单验证 rule.message bug All In One
    vue 表单验证 rule message bug All In One
    Node.js & TypeScript error All In One
    VS2010如何调试IIS上的网站
    用LINQ查询XML并绑定给GridView显示
    SQLServer2008评估期已过解决方法
    ASP.NET给用户控件(.ascx)增加属性
  • 原文地址:https://www.cnblogs.com/cyleon/p/11993392.html
Copyright © 2011-2022 走看看