• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Quota problem on Plesk 8.0.1 and FC4

X

xtreme2490

Guest
In my Plesk CP in Physical Hosting setup , it say's harddisc quota is not supported.
However :

etc/fstab
LABEL=/ / ext3,usrquota defaults 1

/usr/local/psa/admin/sbin/usermng --isquotable
usermng: File system ext3,usrquota has no quota support.

System error 2: No such file or directory
usermng: File system ext3,usrquota has no quota support.

System error 2: No such file or directory
1

What is wrong , how can i solve it ?
 
I got it working...

I added the quota to the /etc/fstab like following line:

/dev/VolGroup00/LogVol00 / ext3 defaults,usrquota,grpquota 1 1

Then I got to the filesystem where you want quotas on (/var/www/vhosts, in my case a have a Logical Volume mounted over /var/www , but if you have a typical FC4 installation it can be /)

do the following:

touch /aquota.user /aquota.group
chmod 600 /aquota.*
mount -o remount /
quotaon -avug

The last line isn't necaisary i guess because you added usrquota and grpquota to the fstap by yourself.

After doing this quotas were working !!
 
Got it to work to , it was the first line in fstab.
I've changed it like the kb from swoft , and now it works.
 
Back
Top