How to Disable Filesystem Quotas

This element (ia-generated) isn't supported, or may require an update to be displayed. You can try to refresh the app.

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:
    .1Use SSH to connect to your server as the root user.
    .2Open the /etc/default/grub file and remove the following line:
`rootflags=uquota`
    .3Save and close the file.
    .4Run the following command to update the GRUB bootloader:
grub2-mkconfig --output=/boot/grub2/grub.cfg
    .5Run the following command to disable quotas:
xfs_quota -x -c 'off' -c 'remove' /
    .6Use your preferred method to reboot your server.
    .7Run 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:
    .1Use SSH to connect to to your server as the root user.
    .2Open the /etc/fstab file and remove the uquota entry for your mount or filesystem.
    .3Save and close the file.
    .4Run the following command to disable quotas:
xfs_quota -x -c 'off' -c 'remove' path_to_mount
    .5Run 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.