• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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