# df -h
The output would be similar to the following :
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/log_vg-log 9.9G 9.9G 0G 100% /storage/log
VMware vCenter Server 6.x
VMware vCenter Server 7.x
VMware vCenter Server 8.x
There are old support log bundles in the vCenter log directory which are consuming space or the new bundle size is fairly large.
2. Connect to the vCenter Server Appliance using SSH and log in as the root user and enter shell by typing: shell
3. Search for any old log bundles: (Note: Log bundle names will appear by default with names like "vc-support-<vc_name>-<date&time>.tgz")
find / -iname *.tgz
4. Navigate to the relevant directory. (example for files in /storage/core/<filename>.tgz)
cd /storage/core
5. Delete the old log bundles: (Note: the preceding "./" restricts the rm to the current working directory)
rm ./*.tgz
6. Restart all vCenter Server services
service-control --stop --all && service-control --start --all