ispmanager 6

/
/
Occupied disk space in ispmanager does not match the values of the du utility

Occupied disk space in ispmanager does not match the values of the du utility

Symptoms

The information about user-occupied space in the ispmanager panel is different from the output of the du -sh command.

Causes

  • User directory contains files that do not belong to the user's group;
  • There are files in other directories that belong to the user's group.

Solution

To find files in the target user's home directory that do not belong to the target user, use the following command:

find /var/www/<username> -not -group <username>

To find the target user's files that are not in their home directory, use the following command:

find / -not -path "/var/www/<username>/*" -group <username>

PLEASE NOTE!

Be extremely careful when moving and/or deleting files!

In this article