Difference between revisions of "Cpanel quotas"
m (Reverted edits by 92.113.184.154 (Talk) to last version by 85.49.71.68) |
(Added external link to forum post solving the issue with changes in vps configuration) |
||
Line 16: | Line 16: | ||
== External links == | == External links == | ||
* [http://cpwiki.org cpWiki] - a wiki about cPanel | * [http://cpwiki.org cpWiki] - a wiki about cPanel | ||
+ | * [http://forums.cpanel.net/f5/fixquota-script-error-46270.html] - fixquota script error, Thanks to David from Cliffsupport | ||
[[Category: Troubleshooting]] | [[Category: Troubleshooting]] |
Revision as of 18:57, 13 February 2012
WHM/Cpanel, a popular commercial web-based control panel for Linux, has a tendency to overwrite the special quota files in the VE context. I am referring to:
lrwxr-xr-x 1 root root 39 Jun 8 17:27 aquota.group -> /proc/vz/vzaquota/00000073/aquota.group lrwxr-xr-x 1 root root 38 Jun 8 17:27 aquota.user -> /proc/vz/vzaquota/00000073/aquota.user
The result of these being overwritten will be WHM showing "unlimited" quota reports for all users in the system. An quick solution to this is to run these commands from within the VE as root:
rm -rf /aquota.user 2>/dev/null rm -rf /aquota.group 2>/dev/null unlink /aquota.user 2>/dev/null unlink /aquota.group 2>/dev/null for x in `find /proc/vz/vzaquota/ | tail -2 `; do ln -s $x / ; done