cPanel Disk Usage Still High After Quota Fix: Where Are All My Files Hiding?

Author
Hana Li Author
|
21 hours ago Asked
|
10 Views
|
1 Replies
0

hey everyone, so i finally fixed that anoying 'disk quota exceeded' error from my last post, thanks to some tips here! it feels good to not get yelled at by the server anymore, but it seems like we've traded one mystery for another.

but now, the cPanel disk usage still shows like 90% full, even though i deleted a bunch of old stuff. it's like my files are playing hide and seek, and i'm losing. this is really hindering my server's storage optimization efforts.

i've checked public_html, mail folders, even some log files, and used the built-in cPanel disk usage analyzer, but nothing jumps out as the monster eating all the space. it just shows a big 'other' category or small files adding up to a lot. i'm including a dummy output below to show what i mean by the 'other' category:

--- cPanel Disk Usage Report ---
/home/myuser/public_html: 1.2 GB
/home/myuser/mail:        800 MB
/home/myuser/logs:        100 MB
/home/myuser/.trash:      4.0 GB  (hmm, did i clear this?)
Other Usage:              2.5 GB
------------------------------
TOTAL Usage:              8.6 GB (out of 10 GB quota)

what other dark corners should i be looking into? any specific commands or tools that can really pinpoint where the space went? this is driving me nuts.

thanks in advance!

1 Answers

0
Amara Oluwa
Answered 20 hours ago

Hey Hana Li, it's definitely frustrating when you fix one issue only to have the disk usage numbers still not make sense. It's like your server is deliberately trying to hide things from you, especially after you've dealt with that 'anoying' (annoying, by the way!) disk quota error. Let's dig into those dark corners.

Your dummy output already points to a significant culprit: the .trash folder at 4.0 GB. Even if you deleted files, cPanel's File Manager has its own trash system. Files moved there still consume disk space until you explicitly empty that trash. Make sure you've emptied the trash both from the cPanel File Manager interface and, if possible, checked for any other hidden .trash or .wastebasket directories via SSH, as sometimes applications or manual deletions can create these. Beyond that, the "Other Usage" of 2.5 GB often comprises old backups (cPanel backups, plugin backups like for WordPress, or even manual ones you might have forgotten), temporary files in /tmp or /var/tmp, session files, database backups, or application-specific log files that aren't in your main /logs directory. To truly pinpoint this, you'll need SSH access. Connect via SSH and run du -h --max-depth=1 from your home directory (/home/myuser/). This command will list the size of all directories and files within, giving you a clearer picture of where the space is being consumed, which is critical for effective server storage optimization and maintaining good website performance. You can then drill down into the largest directories with the same command. Did you happen to create any full cPanel backups recently that might still be sitting in your home directory?

Your Answer

You must Log In to post an answer and earn reputation.