8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

VMware ESXi(7.0U3g)にパッチを適用して7.0U3iへアップデートする

Last updated at Posted at 2022-12-30

本記事は個人的な見解であり、筆者の所属するいかなる団体にも関係ございません。

1. はじめに

無償版ESXiの7.0U3gを7.0U3iへISOを使わずにコマンドラインからリモートでアップデートする手順です。

2. 前提条件

現在のバージョン

image.png

更新先バージョン

以下のバージョンにアップデートします。
VMware ESXi 7.0 Update 3i(2022-12-8発表)
https://docs.vmware.com/en/VMware-vSphere/7.0/rn/vsphere-esxi-70u3i-release-notes.html

3. 製品パッチの入手

VMware Customer Connectにサインインし、製品とエンタイトルメント アカウントメニューから、”製品パッチ”を選択

VMware Customer Connect
https://customerconnect.vmware.com/jp

image.png
「ESXi」を選択
image.png
「7.0を選択」して「検索」
image.png
「今すぐダウンロード」をクリック
image.png

VMware-ESXi-7.0U3i-20842708-depot.zip
ファイルがダウンロードされました。

4. パッチ適用

4-1. SSHを有効化

「ホスト」>「管理」>「サービス」>「TSM-SSH」をクリックして「起動」をクリック
image.png
図は起動後

4-2. 全ての仮想マシンをシャットダウン

4-3. ESXiをメンテナンスモードへ切替

「ホスト」>「アクション」>「メンテナンスモードへ切り替え」をクリック
image.png

4-4. パッチファイルをESXiへアップロード

「ストレージ(右クリック)」>「データストアの参照」をクリック
image.png
アップロードをクリックして、ダウンロードしたZipファイルを選択してアップロード
image.png

4-5. SSHでESXiにログインして確認

image.png

4-6. 現在のプロファイルを確認

以下のコマンドを実行します

esxcli software profile get

image.png

4-7. パッチファイルのプロファイル確認

以下のコマンドでzipファイルにあるプロファイルを確認します。

esxcli software sources profile list --depot /vmfs/volumes/datastore1/update/VMware-ESXi-7.0U3i-20842708-depot.zip

image.png

4-8. アップデートを適用

standardプロファイルのESXi-7.0U3i-20842708-standardを使用してアップデートします。

esxcli software profile update -d /vmfs/volumes/datastore1/update/VMware-ESXi-7.0U3i-20842708-depot.zip -p ESXi-7.0U3i-20842708-standard

旧式のCPUのサーバーだったので以下のワーニングが出ました。

 [HardwareError]
 Hardware precheck of profile ESXi-7.0U3i-20842708-standard failed with warnings: <CPU_SUPPORT WARNING: The CPU in this host may not besupported in future ESXi releases. Please plan accordingly.>

 Apply --no-hardware-warning option to ignore the warnings and proceed with the transaction.
 Please refer to the log file for more details.

--no-hardware-warningを追加して再実行します

[root@localhost:~] esxcli software profile update -d /vmfs/volumes/datastore1/update/VMware-ESXi-7.0U3i-20842708-depot.zip -p ESXi-7.0U3
i-20842708-standard --no-hardware-warning
Update Result
   Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
   Reboot Required: true

4-9. 再起動

コマンドラインからrebootを実行

reboot

4-10. 再ログイン

再ログインしてバージョンを確認します。
image.png
バージョンアップされました

5. 参考情報

VMware ESXiにパッチを適用する | New technologies in our life
https://yoshi0808.github.io/new-technology/2020/06/14/esxi67-patch/

VMware ESXi 7.0とvCenter Server 7.0のUpdate 3iが公開されていた - 身の回り4畳半近辺の日記
https://b3g.hatenablog.com/entry/2022/12/12/215754

8
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?