有几台ESXi主机比较老了,上周把这几个主机从ESXi6.7版本升级到ESXi 7.0.3版本后,发现无法识别到Emulex LPe12000 HBA卡,当然也无法识别到存储了。
解决方法:
1、登录到ESXi主机,使用 esxcli software vib list |grep lpfc进行查询。
[root@abc:~] esxcli software vib list |grep lpfc
lpfc 14.0.543.0-1OEM.700.1.0.15843807 EMU VMwareCertified 2022-07-20
2、卸载此驱动[root@abc:~] esxcli software vib remove -n lpfc
[root@abc:~] esxcli software vib remove -n lpfc
Removal Result
Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
Reboot Required: true
VIBs Installed:
VIBs Removed: VMW_bootbank_lpfc_14.0.169.25-5vmw.703.0.35.19482537
VIBs Skipped:
3、使用reboot重启ESXi主机。
4、下载新的驱动并上传到ESXi主机的/tmp目录中。点击此处进行下载,==下载后解压==。
5、使用esxcli software component apply -d命令安装此zip驱动。
esxcli software component apply -d /tmp/Broadcom-ELX-lpfc_12.8.614.16-1OEM.700.1.0.15843807_19473906.zip\
[root@abc:/tmp] esxcli software component apply -d /tmp/Broadcom-ELX-lpfc_12.8.614.16-1OEM.700.1.0.15843807_19473906-package.zip
EMU_bootbank_lpfc_12.8.614.16-1OEM.700.1.0.15843807.vib
Installation Result
Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
Reboot Required: true
VIBs Installed: VMW_bootbank_lpfc_12.8.614.16-1OEM.700.1.0.15843807
VIBs Removed:
VIBs Skipped:
6、使用reboot再次重启ESXi主机,重启后发现可以正常识别到Emulex LPe12000 HBA卡,也能正常使用光纤存储。 ———————————————— 版权声明: 原文链接:https://blog.csdn.net/Fanlei315/article/details/127850769