2017年04月11日
Tweet
以前はこんな感じで作業していました。
2016年01月10日:HP ProLiant で ESXi 5.1 から 5.5 にアップグレードする。
今回は 6.5 が出ていたので、それにアップグレードしたいと思います。
■前提
アップデートは zip ファイルを利用して行います。
SSH ログインはキーボードインタラクティブになります。
1. まずは HP のサイトから ProLiant用にカスタマイズされた vmware をダウンロードします。
現在のURLは http://www.hpe.com/info/esxidownload
vmware のサイトに飛び、ダウンロード項目が表示されます。
2. HPE Custom Image for VMware ESXi 6.5 Offline Bundle をダウンロード
ISOもありますが、今回は zip ファイルを利用してアップデートします。
3. zip ファイルを (Windows環境で) 解凍します。
前回のとおりです。
4. vmware のローカルにコピーします。
※ VMware vSphere Client を利用して、データストアにファイルをアップロードしました。
以下からは以前と概ね同様です。
5. ESXi バージョンの確認
# esxcli system version get
6. Profile の確認
# esxcli software profile get
7. アップデートファイルの確認
esxcli software profile update -d /vmfs/volumes/datastore1/vmupd/ -p HPE-ESXi-6.5.0-OS-Release-650.9.6.0.28
ここでエラーになりました。
[DependencyError]
VIB Emulex_bootbank_scsi-lpfc820_10.5.55.0-1OEM.500.0.0.472560 requires com.vmware.driverAPI-9.2.0.0, but the requirement cannot be satisfied within the ImageProfile.
VIB Emulex_bootbank_scsi-lpfc820_10.5.55.0-1OEM.500.0.0.472560 requires vmkapi_2_0_0_0, but the requirement cannot be satisfied within the ImageProfile.
VIB QLogic_bootbank_scsi-qla2xxx_934.5.45.0-1OEM.500.0.0.472560 requires vmkapi_2_0_0_0, but the requirement cannot be satisfied within the ImageProfile.
VIB QLogic_bootbank_scsi-qla2xxx_934.5.45.0-1OEM.500.0.0.472560 requires com.vmware.driverAPI-9.2.0.0, but the requirement cannot be satisfied within the ImageProfile.
Please refer to the log file for more details.
QLogic_bootbank_scsi でも同じようなメッセージが。
正直よくわかりません。とりあえず利用していないと思われるため、以下のコマンドで削除しました。
参考
VMware vSphere 6.5 – Conflicting VIBs when upgrading ESXi 6.0 to 6.5
esxcli software vib list | grep QLogic
以下の行がありました。
scsi-qla2xxx
これを削除。
esxcli software vib remove -n scsi-qla2xxx
Emulex も同様に行いました。
8. アップデートの実行
esxcli software profile update -d /vmfs/volumes/datastore1/vmupd/ -p HPE-ESXi-6.5.0-OS-Release-650.9.6.0.28
9. reboot
再起動が必要だというステータスがでているので reboot を行います。
Reboot Required: true
再起動には少し時間がかかります。
10. 確認
# esxcli system version get
Product: VMware ESXi
Version: 6.5.0
Build: Releasebuild-4564106
Update: 0
Patch: 0
なおこれからは webui を利用するようになるようですね。ブラウザからのアクセスは便利です。

2016年01月10日:HP ProLiant で ESXi 5.1 から 5.5 にアップグレードする。
今回は 6.5 が出ていたので、それにアップグレードしたいと思います。
■前提
アップデートは zip ファイルを利用して行います。
SSH ログインはキーボードインタラクティブになります。
1. まずは HP のサイトから ProLiant用にカスタマイズされた vmware をダウンロードします。
現在のURLは http://www.hpe.com/info/esxidownload
vmware のサイトに飛び、ダウンロード項目が表示されます。
2. HPE Custom Image for VMware ESXi 6.5 Offline Bundle をダウンロード
ISOもありますが、今回は zip ファイルを利用してアップデートします。
3. zip ファイルを (Windows環境で) 解凍します。
前回のとおりです。
4. vmware のローカルにコピーします。
※ VMware vSphere Client を利用して、データストアにファイルをアップロードしました。
以下からは以前と概ね同様です。
5. ESXi バージョンの確認
# esxcli system version get
6. Profile の確認
# esxcli software profile get
7. アップデートファイルの確認
esxcli software profile update -d /vmfs/volumes/datastore1/vmupd/ -p HPE-ESXi-6.5.0-OS-Release-650.9.6.0.28
ここでエラーになりました。
[DependencyError]
VIB Emulex_bootbank_scsi-lpfc820_10.5.55.0-1OEM.500.0.0.472560 requires com.vmware.driverAPI-9.2.0.0, but the requirement cannot be satisfied within the ImageProfile.
VIB Emulex_bootbank_scsi-lpfc820_10.5.55.0-1OEM.500.0.0.472560 requires vmkapi_2_0_0_0, but the requirement cannot be satisfied within the ImageProfile.
VIB QLogic_bootbank_scsi-qla2xxx_934.5.45.0-1OEM.500.0.0.472560 requires vmkapi_2_0_0_0, but the requirement cannot be satisfied within the ImageProfile.
VIB QLogic_bootbank_scsi-qla2xxx_934.5.45.0-1OEM.500.0.0.472560 requires com.vmware.driverAPI-9.2.0.0, but the requirement cannot be satisfied within the ImageProfile.
Please refer to the log file for more details.
QLogic_bootbank_scsi でも同じようなメッセージが。
正直よくわかりません。とりあえず利用していないと思われるため、以下のコマンドで削除しました。
参考
VMware vSphere 6.5 – Conflicting VIBs when upgrading ESXi 6.0 to 6.5
esxcli software vib list | grep QLogic
以下の行がありました。
scsi-qla2xxx
これを削除。
esxcli software vib remove -n scsi-qla2xxx
Emulex も同様に行いました。
8. アップデートの実行
esxcli software profile update -d /vmfs/volumes/datastore1/vmupd/ -p HPE-ESXi-6.5.0-OS-Release-650.9.6.0.28
9. reboot
再起動が必要だというステータスがでているので reboot を行います。
Reboot Required: true
再起動には少し時間がかかります。
10. 確認
# esxcli system version get
Product: VMware ESXi
Version: 6.5.0
Build: Releasebuild-4564106
Update: 0
Patch: 0
なおこれからは webui を利用するようになるようですね。ブラウザからのアクセスは便利です。