"core.rs:main Q:Reg.###"
and "core.in:imuxsock.###"
This issue is caused due to the “/storage/log” bloating. This is known issue has been already fixed in VC 7.0 U3i and VC 8.0U3 and higher versions which will prevent the issue from happening post applying the fix. However, the older log files and coredumps need to be manually cleaned up in the vCenter Server.
Clean-up the files by following below steps :
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 {}
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 {}
find /storage/core/ -iname "core.rs:main Q:Reg*" | xargs -i rm -f {}
service-control --stop --all
find /var/log/vmware/ -type f -mtime +50 | xargs -i rm -f {}
systemctl daemon-reload
systemctl restart rsyslog
service-control --start --all
find /var/log/vmware/ -iname "*.stdout-*" | wc -l
find /var/log/vmware/ -iname "*.stderr-*" | wc -l
find /var/log/vmware/ -iname "messages.*.backup" |wc -l
Output for the 1st and 2nd command will be in thousands and 3rd command will be in hundreds if the VC is impacted by the log bloating issue and manual steps mentioned under Resolution is required to clean these files.
cat /etc/cron.d/syslog.cron
"* * * * * root /usr/lib/applmgmt/syslog/scripts/syslog_cron.sh >/dev/null 2>&1"
then the fix is available in the vCenter Server.cat /etc/logrotate.conf
daily
', 'size
', 'rotate
' and 'maxage
' then the fix is available in the vCenter Server.