Inode Usage

An inode is a data structure used to keep information about a file on your hosting account. The number of inodes indicates the number of files and folders you have. This includes everything on your account, emails, files, folders, anything you store on the server.

There is currently an limit of 100k inodes on our shared accounts.

What is the 100k inode limit?

Our shared servers only allow 100,000 files per cPanel. When the limit is reached you will not be able to upload new files and I/O functions may be restricted on the account, which could produce resource related errors on your hosted website(s). Once the account passes the 100,000 file threshold, it will be in violation of our Terms of Service and can result in possible suspension.

VPS accounts are limited to one million (1,000,000) inodes. Unlike Shared/Resller accounts this is a "Hard limit," if the threshold is reached you will no longer be able to upload files to your account. Inodes do not affect the weekly backups for VPS accounts.

Dedicated servers have no inode limits in place, only those that exist for the file system on the server (such as ext3).

How can I reduce my inode count?

Simply delete any files or emails you no longer need.

How can I see how many inodes I am using?

Shared customers and Reseller's can call or join live chat and we will be glad to check the inode usage for your account.

VPS customers can view the current inode usage from the VZ Panel, simply click on the Resources icon and check under the disk usage section. The limit is called "diskinodes" and will report how many inodes are currently on your VPS account.

For dedicated customers you can check the inodes of an account on your server by using SSH:


quota -s

If you have SSH access to your account you can view the inodes for a specific folder using the following command:

find . -printf "%h\n" | cut -d/ -f-2 | sort | uniq -c | sort -rn

The following command also outputs a nicely formatted list of detailed inode usage on your account, including totals:

echo "Detailed 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"

TOS Inode violations can consist of the following (however not limited to):

  • Continuously publishing and deleting large numbers of files (i.e. 10,000+)
  • If the cPanel account exceeds 100,000 inodes, Please refer to section 7b) of our Terms of Service.

 

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Mail Policy

Limits There is a 250 outgoing email hourly limit per domain. This limit is also applied...

Bulk mailing and Email deliverability Guidelines

For sending large volume of emails you should ensure they are not spam. Spam is mail sent to end...

Backup policy, Do you provide backups?

You are responsible for your backups and web content. For backups that we do provide, our...

CPU Resource Usage

Shared Servers Darrel Technologies allows a maximum of 25% CPU usage limit. You may exceed this...