Enable Quota on Plesk (Debian)

Afdrukken
PDF
Gebruikerswaardering: / 0
LaagsteHoogste 

How to enable quota support on Plesk running on Debian Linux

This howto will show you how to enable quota support on Debian Linux running Plesk Control Panel

Install Quota Support

  1. Update the APT system
    apt-get update
  2. Install the quota package
    apt-get install quota

Check the fstab file for quota support

  1. Open /etc/fstab
    nano -w /etc/fstab
  2. Check for the "usrquota" line on you partition you want to enable quota for, it should look something like this:
    /dev/sda1       /               ext3    defaults,usrquota,errors=remount-ro 0       1

Enable quota support

  1. Run the following commands to enable the quota support:
    quotaoff -av
    quotacheck -avum
    quotaon -av
  2. Reboot your server
    reboot

Quota's should now be available for your server! If you have any questions related to this article, please contact me!