Linux 内核模块拒绝加载

Linux 内核模块拒绝加载

我有一台运行 RHEL 5.5 的服务器,其中安装了 EMC PowerPath。由于安全要求,我不得不将内核升级到较新的版本。不幸的是,我不知道升级对 EMC PowerPath 的影响。升级后,服务器无法再加载 PowerPath 内核模块。

于是我降级回原来的内核。内核模块仍然拒绝加载。

我尝试手动加载模块,但出现以下错误。

[root@cvoapd05 EMCpower.LINUX-5.3.1.02.00]# modprobe emcp
FATAL: Error inserting emcp (/lib/modules/2.6.18-194.32.1.el5/powerpath/emcp.ko): Device or resource busy

.ko 文件仍位于路径“/lib/modules/2.6.18-194.32.1.el5/powerpath”中,文件大小和日期保持不变。

有什么办法可以解决这个问题吗?

grub.conf 文件:

# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /boot/, eg.
#          root (hd0,0)
#          kernel /vmlinuz-version ro root=/dev/cciss/c0d0p8
#          initrd /initrd-version.img
#boot=/dev/cciss/c0d0
# default=0 # commented out by Proliant HBA install script
default=0
fallback=1
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server (2.6.18-194.32.1.el5)
        root (hd0,0)
        kernel /vmlinuz-2.6.18-194.32.1.el5 ro root=LABEL=/ rhgb quiet crashkernel=1024M@16M
        initrd /initrd-2.6.18-194.32.1.el5.img

title Red Hat Enterprise Linux Server (2.6.18-194.el5)
        root (hd0,0)
        kernel /vmlinuz-2.6.18-194.el5 ro root=LABEL=/ rhgb quiet crashkernel=1024M@16M
        initrd /initrd-2.6.18-194.el5.img

# This entry (no. 1) added by Proliant HBA install script
# in package cpq_cciss-3.6.26-5.rhel5
title HP-2.6.18-194.el5
        root (hd0,0)
        kernel /vmlinuz-2.6.18-194.el5 ro root=LABEL=/ rhgb quiet crashkernel=1024M@16M
        initrd /HP-initrd-2.6.18-194.el5.img

答案1

可能有另一个驱动程序连接到 powerpath 驱动程序尝试连接的设备。检查是否已加载任何其他多路径驱动程序,这lsmod | grep path应该足够了。事实上,只需提供输出lsmod即可帮助我们确定导致此问题的原因。

答案2

使用本机多路径守护程序而不是 powerpath。

答案3

/etc/rc.d/PowerPath其中有逻辑来确定是否已加载不同的内核,如果是,则更新其配置,这不仅仅涉及复制emcp.ko

尝试手动运行/etc/rc.d/PowerPath start来修复问题或者获取有关问题的更多信息。

相关内容