How to Disable Filesystem Quotas


Last modified: February 19, 2024

Overview

Filesystem quotas allow server owners to limit the amount of disk space that an account uses. For most hosting providers, this is an integral part of how they manage cPanel accounts. However, in some circumstances, you may wish to disable filesystem quotas in order to improve your server’s performance.

The cPanel & WHM installation process enables quotas by default. You must wait until after installation to disable quotas.

You can enable quotas in WHM’s Initial Quota Setup interface (WHM » Home » Server Configuration » Initial Quota Setup) or via the /usr/local/cpanel/scripts/fixquotas script.

Disable for the root XFS filesystem

To disable filesystem quotas for the root XFS filesystem:

  1. Use SSH to connect to your server as the root user.

  2. Open the /etc/default/grub file and remove the following line:

`rootflags=uquota`
  1. Save and close the file.

  2. Run the following command to update the GRUB bootloader:

grub2-mkconfig --output=/boot/grub2/grub.cfg
  1. Run the following command to disable quotas:
xfs_quota -x -c 'off' -c 'remove' /
  1. Use your preferred method to reboot your server.

  2. Run the following command to confirm your changes:

mount | grep ' / '
The output should resemble the following example:
/dev/vda1 on / type xfs (rw,relatime,attr2,inode64,noquota)

Disable for non-root XFS filesystems

To disable filesystem quotas for non-root filesystems:

  1. Use SSH to connect to to your server as the root user.

  2. Open the /etc/fstab file and remove the uquota entry for your mount or filesystem.

  3. Save and close the file.

  4. Run the following command to disable quotas:

xfs_quota -x -c 'off' -c 'remove' path_to_mount
  1. Run the following command to remount the filesystem, where path_to_mount represents the absolute path to your mount point:
mount -o remount path_to_mount
Note:

It is not necessary to reboot the server when you disable quotas for non-root filesystems. However, you can reboot the server as an alternative to this step.

Additional Documentation