esxi升级,esxi6.0升级esxi6.7版本

发布时间 2023-11-28 15:20:45作者: 小油2018

目的:

esxi6.0版本升级到esxi6.7版本

 

步骤:

1、开启当前esxi6.0 的ssh服务

https://www.cnblogs.com/xiaoyou2018/p/16567306.html

2、使用shell方式登录esxi

vmware -vl 查看当前版本号

 3、下载6.7更新包并上传到esxi

https://customerconnect.vmware.com/patch

或者

链接: https://pan.baidu.com/s/1xk_0JKVRjlyXtVURt9b-Zw?pwd=xf3b 提取码: xf3b 

 上传到esxi的存储器

 查看

esxcli software sources profile list -d /vmfs/volumes/56de85fe-6072850c-d7f1-001e67ca37fe/ESXi670-202210001.zip

 更新

esxcli software profile update -d /vmfs/volumes/56de85fe-6072850c-d7f1-001e67ca37fe/ESXi670-202210001.zip -p ESXi-6.7.0-20221001001s-standard --no-sig-check

报错

如提示’Could not find a trusted signer.’
这样的信息就要在后面多加一个"--no-sig-check"

如提示[DependencyError]
VIB VMware_locker_tools-light_11.1.1.16303738-16701467 requires esx-version >= 6.6.0, but the requirement cannot be satisfied within the ImageProfile.
Please refer to the log file for more details.
可执行下面这个,把tools-light去掉

esxcli software vib remove --vibname=tools-light

 

 

 

 

重启

reboot

查看更新后的版本

 

参考:

https://blog.csdn.net/zly3500/article/details/122969393
https://bobwang1.wordpress.com/2021/02/25/esxi6-0%E5%8D%87%E7%BA%A7%E5%88%B06-7/