File Usage in cPanel's Main Control Panel Query
In cPanel Main Control Panel. On the right hand shows the File Usage. Everyday I see one file increase in it. I haven't changed anything in my site. I just make a copy of my database (as the site is a forum) on a daily basis which I download directly to my computer. I keep wondering why it keep showing me one file increase everyday then? I hope that I am explaining it alright.
-
Everyday I see one file increase in it.
What does this mean exactly?0 -
If files usage is saying 'x' files today then tomorrow it will show 'x+1' automatically. And, so on. 0 -
Hello @Mrinmoy, File Usage refers to disk inodes, or the number of files uploaded to your account. If the number increases, it means more files were created. You can use cPanel >> File Manager or a FTP client to look at all of the files under the /home/username/ directory. A new email is one of the more common reasons to see an inode increase if you are not uploading new website files. Thank you. 0 -
Hello @Mrinmoy, File Usage refers to disk inodes, or the number of files uploaded to your account. If the number increases, it means more files were created. You can use cPanel >> File Manager or a FTP client to look at all of the files under the /home/username/ directory. A new email is one of the more common reasons to see an inode increase if you are not uploading new website files. Thank you.
Okay so, as the site is a forum. People do register through emails. That might be the reason, right? Anyway thanks for the info.0 -
Okay so, as the site is a forum. People do register through emails. That might be the reason, right? Anyway thanks for the info.
You can open cPanel >> Terminal if it's enabled as a feature for your cPanel account. Once it's opened, run the following command to see the inode count for each subdirectory under /home/username/:echo "Inode usage for: $(pwd)" ; for d in `find -maxdepth 1 -type d |cut -d\/ -f2 |grep -xv . |sort`; do c=$(find $d |wc -l) ; printf "$c\t\t- $d\n" ; done ; printf "Total: \t\t$(find $(pwd) | wc -l)\n"
Thank you.0
Please sign in to leave a comment.
Comments
5 comments