Disk space is almost full
Moderator: Staff
Disk space is almost full
Hi. I'm facing this problem that my server's one partition's disk space is almost full. I have tried all steps available in google to reduce the diskspace like trimming the error logs and all. Deleted some backups. Emptied the trash and src. It's a cPanel server. Do you have any suggestions? It's really urgent.
cPanel Server Management
@ 30$ Onwards
@ 30$ Onwards
Re: Disk space is almost full
Try #du -sch /var/lib/mysql/* |grep G this command. There is a chance in high disk usage by databases like eximstats and tortix in the server with ASL. So this command will show the higher disk using databases.
If it shows /var/lib/mysql/tortix then run #/var/asl/bin/database-setup. It would take a moment so let the command run.
If it shows /var/lib/mysql/eximstats directory using large disk space then login to MySQL and check the eximstats DB and delete the tables SMTP and failures by using following commands
#use eximstats;
#delete from smtp;
#delete from failures;
If it shows /var/lib/mysql/tortix then run #/var/asl/bin/database-setup. It would take a moment so let the command run.
If it shows /var/lib/mysql/eximstats directory using large disk space then login to MySQL and check the eximstats DB and delete the tables SMTP and failures by using following commands
#use eximstats;
#delete from smtp;
#delete from failures;
Re: Disk space is almost full
That is great. Thank you very much. You are a lifesaver. Tortix was using 3.3 Gb of the disk space. Now it is cleared.