Page 1 of 1

ASL - Plesk - Quota support

Posted: Fri Nov 05, 2010 8:37 pm
by nobody
I had this in my mind for some time.

I have 2 servers running ASL Linux and Plesk.
And plesk says quota is not supported by the system.

First of all do you suggest running usrquota ?

Second question is if this has to do with the kernel or is it just some option in the fstab.

And last question is if I enable quota on a production server is there a possibility that something might go wron once quotas werent being used up till now ?

Has anyone tried this switch "at home" before ? lol

Re: ASL - Plesk - Quota support

Posted: Sat Nov 06, 2010 9:16 am
by scott
You nailed it, this is just something you have to enable in fstab. Once the system reboots it should be available.

Re: ASL - Plesk - Quota support

Posted: Sat Nov 06, 2010 10:57 am
by nobody
scott wrote:You nailed it, this is just something you have to enable in fstab. Once the system reboots it should be available.
Aha.

This is my current fstab

Code: Select all

/dev/md0                /                       ext3    defaults        1 1
/dev/md1                /boot                   ext3    defaults        1 2
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
/swapfile               swap                    swap    defaults        0 0
So if I change this to that it should be ok right ?

Code: Select all

/dev/md0                /                       ext3,usrquota    defaults        1 1
Thanks !

Re: ASL - Plesk - Quota support

Posted: Sat Nov 06, 2010 11:05 am
by scott
You want to stick that after defaults like this:

Code: Select all

/dev/md0     /   ext3    defaults,usrquota              1    1

Re: ASL - Plesk - Quota support

Posted: Sat Nov 06, 2010 11:10 am
by nobody
scott wrote:You want to stick that after defaults like this:

Code: Select all

/dev/md0     /   ext3    defaults,usrquota              1    1
Aha !!!!!

And then everything is gonna work without any problems caused or anything else having a problem right ?
Just like before just with usrquota enabled as well ! ?

:)

Re: ASL - Plesk - Quota support

Posted: Sat Nov 06, 2010 11:12 am
by scott
Yup that should do it