find /var/log/vmware/applmgmt/ -iname "*.stdout-*" | wc -l
find /var/log/vmware/applmgmt/ -iname "*.stderr-*" | wc -l
ls /var/log/vmware/vsphere-ui/logs/ | wc -l
find /var/log/vmware/ -iname "messages.*.backup" | wc -l
Note: Ensure there is valid backup/offline snapshot of the VCSA prior to implementing the workaround. Refer to VMware vCenter in Enhanced Linked Mode pre-changes snapshot (online or offline) best practice
cd /storage/core
rm core.in:imuxsock.*
Cleaned-up all the `.backup` files and `.std{out|err}-` files :
find /var/log/vmware -type f -name "*.backup" | xargs -i rm -f {}
find /var/log -type f -name "lastlog.*.backup" | xargs -i rm -f {}
find /var/log -type f -name "tallylog.*.backup" | xargs -i rm -f {}
service-control --stop --all
service-control --status
find /var/log/vmware/ -type f -mtime +7 -iname "*.stdout-*" | xargs -i rm -f {} find /var/log/vmware/ -type f -mtime +7 -iname "*.stderr-*" | xargs -i rm -f {}
find /storage/core/ -iname "core.in:imuxsock*" | xargs -i rm -f {}
find /storage/core/ -iname "core.in:imfile*" | xargs -i rm -f {}
cd /var/log/vmware/vsphere-ui/logs
rm -f vsphere-ui-gc.log.*
cd /var/log/vmware/
rm -f messages.*.backup
systemctl restart rsyslog
service-control --start --all
service-control --status
Similar problems exist with imfile and these imuxsock files.
vCenter KB on imfiles and imuxsock files:
SDDC manager imfile KB:
SDDC Manager appliance root file system is filled with files (imfile-state:***)
The issue can also cause an upgrade failure on vCenter 7.x (example - upgrading from 7.0u3t to 7.0u3v).
The VAMI will display these errors -
Implementing the resolution above, and then retrying the upgrade will allow it to succeed.