the server HDD is filling up very fast

th£ lord

Verified User
Joined
Jan 6, 2007
Messages
42
hello,
Thanks for help Zeiter.

There will be another responsibility.
If I do not upload data to the web pages, the server HDD is filling up very fast.
I looked at the logs, but I did not see what you were filling in.
I looked at the files over 100 MB of HDD. But there is no abnormality.
The last action I made. Let's encrypt install it.
There are no abnormalities in the Directadmin Error logs.

Why could it be? What do you think?


Virtual Server VDS :

Filesystem Size Used Avail Use% Mounted on
rootfs 189G 180G 173M 100% /
udev 10M 0 10M 0% /dev
tmpfs 2.4G 248K 2.4G 1% /run
/dev/disk/by-uuid/9e2db5ef-cbe4-4e37-9863-869766a5631b 189G 180G 173M 100% /
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 6.4G 28K 6.4G 1% /run/shm
 
Hello,

It might be a php error log under user's home or public_html.

Run a loop and go into depths of your files with

Code:
cd /
du -h --max-depth=1 | sort -r -h

repeat it until you find a directory which consumes all the disk space.
 
Yes, I have reviewed all the error logs for users. It did not seem to be a problem and the HDD was full.
I did a 48 hour HDD check and no abnormal increase was observed. But I fear that it will happen again. Could it be why? I have no idea.

root@server987:/# du -h --max-depth=1 | sort -r -h
du: cannot access `./proc/31192/task/31192/fd/4': No such file or directory
du: cannot access `./proc/31192/task/31192/fdinfo/4': No such file or directory
du: cannot access `./proc/31192/fd/4': No such file or directory
du: cannot access `./proc/31192/fdinfo/4': No such file or directory
60G .
45G ./home
12G ./var
3.8G ./usr
168M ./tmp
128M ./lib
18M ./boot
14M ./root
14M ./etc
6.6M ./bin
6.1M ./sbin
232K ./run
16K ./lost+found
12K ./media
4.0K ./srv
4.0K ./selinux
4.0K ./opt
4.0K ./mnt
4.0K ./lib64
0 ./sys
0 ./proc
0 ./dev
 
Yes, this question was resolved, thank you.
I did a deep review on the whole server with the following code. A site was logging at an extreme rate. 58GB
I stopped the problematic site and deleted it. Problem solved

du -h --max-depth=1
 
It might mean that you don't have disk quotas enabled on your server. Disk quotas should limit an user's disk usage.
 
Back
Top