Difference between revisions of "CPanel Disk Quotas in OpenVZ"

From vpsget wiki
Jump to: navigation, search
(Created page with "How to enable second level quota for OpenVZ container with cPanel/WHM installed. Step 1. Open container's conf file nano /etc/vz/conf/101.conf Add the following parameter: ...")
 
Line 23: Line 23:
 
  /scripts/fixquotas
 
  /scripts/fixquotas
  
[[Categoty:Admin area]]
+
"[[Category:Admin area]]"

Revision as of 12:38, 5 December 2014

How to enable second level quota for OpenVZ container with cPanel/WHM installed.

Step 1.

Open container's conf file

nano /etc/vz/conf/101.conf

Add the following parameter:

QUOTAUGIDLIMIT="150"

Reboot VPS:

vzctl stop 101
vzctl start 101

Step 2.

From the inside of the container run:

rm -f /aquota.user 2>/dev/null
rm -f /aquota.group 2>/dev/null
for x in `find /proc/vz/vzaquota/ | tail -2 `; do ln -s $x / ; done

Step 3.

From the inside of the container run:

/scripts/fixquotas

""