/storage/log is filling up and there are many files in the /var/log/vmware/rsyslogd directory. The contents of /var/log/vmware/rsyslogd/
may or may not be listed.
To resolve this issue, create a cron job to clear these files.
cd ~
mkdir syslogcron
cd syslogcron/
To remove all the files immediately (before creating the cron job), run the following command and wait until it finishes:
-----------------------------------------------------------------
The time interval that the cron job removes these files may need to be increased to remove the files at the rate they are created
We can alter the cron job to run it every 30 minutes instead of every hour by altering step 7 with the command bellow:
Change
"0 * * * * root /root/syslogcron/cleanimf.sh 2>&1"
To
"*/30 * * * * root /root/syslogcron/cleanimf.sh 2>&1"