• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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