前言
實驗環境有一臺比較老舊的DELL R620,官方支援到vSphere 6.5的版本,使用vSphere 6.7也沒有任何問題,期間也使用過vSphere 7.0,還因為不支援預設帶的網路卡進行過物理網路卡更換,最近由於裝置挪動了位置,打算整體更換為vSphere 8.0
一、安裝vSphere 8.0 U2
為避免安裝過程無法找到網路卡和硬碟的情況,下載使用的是DELL定製的版本,由於之前已經更換過物理網路卡,雖然安裝過程中提示硬體支援可能有問題,但是透過F11仍然能夠正常完成安裝,ESXi在跑起來過後也正常使用。
二、升級vSphere 8.0 U2c
1.esxcli software vib update
在上傳了zip更新包過後,按照習慣優先使用vib update命令進行升級,結果提示有vib問題,無法進行更新。
esxcli software vib update --depot depot /vmfs/volumes/xxx/xxx.zip
2.esxcli software profile update
在使用此命令更新過後,預設也出現了失敗,想起了硬體不在支援列表,報錯也跟硬體有關,所以新增忽略硬體告警命令後更新成功。
確認配置:
esxcli software sources profile list --depot /vmfs/volumes/xxx/xxx.zip
正常更新:
esxcli software profile update --depot /vmf s/volumes/xxx/xxx.zip --profile ESXi-x.x.x-xxx-standard
強制更新:
esxcli software profile update --depot /vmf s/volumes/xxx/xxx.zip --profile ESXi-x.x.x-xxx-standard --no-hardware-warning
使用此命令更新vSphere介面上將會發生變化,途中標黃的位置將會更新,這個是vib update命令不一樣的地方。
總結
R620能夠繼續支援vSphere 8.0,儘量使用DELL提供的ISO進行安裝,升級過程中需要使用profile update命令並忽略硬體告警。
原文連結:https://blog.csdn.net/ganyuansi/article/details/139514273