升级错误
使用 esxcli vib update
升级小系统版本的时候出现如下错误内容:
[DependencyError]
VIB VMware_bootbank_esx-base_6.7.0-1.25.xxxxxxx requires esx-update >= 6.7.0-1.25, but the requirement cannot be satisfied within the ImageProfile.
VIB VMware_bootbank_esx-base_6.7.0-1.25.xxxxxxx requires esx-update << 6.7.0-1.26, but the requirement cannot be satisfied within the ImageProfile.
Please refer to the log file for more details
解决方案
参考文档:
https://knowledge.broadcom.com/external/article?legacyId=56145
具体解决方案如下:
# To get a list of available profiles within a path use the command below:
esxcli software sources profile list -d <location of ZIP file>
# Run this command to update the host:
esxcli software profile update -p <profile name> -d <location of ZIP file>
# Run this command to update the host:
esxcli software vib install -n <vibname1> -n <vibname2> ... -d <location of ZIP file>
评论