Installation Failed [Errno 2] No such file or directory: '/storage/seat/.../patching_backup_config.json' or /storage/updatemgr/.../patching_backup_config.json./var/log/vmware/applmgmt/update_microservice.log, you may see: YYYY-MM-DD HH:MM:SS, - 36754 - rpmfunctions:: isChecksumValid: 356 - ERROR - Checksum does not match, expected [####], found [####]
An ISO checksum mismatch occurs when the downloaded patch file is corrupted due to network drops, storage issues, or incomplete downloads. The staging engine aborts the process before creating the required patching_backup_config.json file.
grep -i checksum /var/log/vmware/applmgmt/update_microservice.log
sha256sum /path/to/vcsa-upgrade.isoExample:
sha256sum /tmp/VMware-VCSA-all-8.0.2-22617221.iso
If checksums do not match:
rm /path/to/vcsa-upgrade.iso
If checksums match:
The ISO file is valid and the issue may be related to other factors
Proceed with other troubleshooting steps for the upgrade failure
df -h
Verify file permissions on the ISO:
ls -la /path/to/vcsa-upgrade.iso
Test ISO integrity by attempting to mount it:
mkdir /tmp/iso_test
mount -o loop /path/to/vcsa-upgrade.iso /tmp/iso_test
ls /tmp/iso_test
umount /tmp/iso_test