• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Resolved Inode full: no more space

AlessandroGEA

New Pleskian
Hi,

i have a Parallels Plesk Panel 11.0.9 with SO CentOS 6.4
now the disk inode is 100% full, with no one free file to allocate.

How i can clean up space or increase disk inodes limits?

thanks to everyone can help me!
Ale
 
Login to your server shell SSH / Shell ..
Then navigate to /var/lib/psa/dumps and remove some backup files to FREE space ...
 
Hello,

You can use the following command to check directory inodes usages.

Code:
for i in `ls -1A | grep -v "\.\./" | grep -v "\./"`; do echo "`find $i | sort -u | wc -l` $i"; done | sort -rn | head -10

It outputs the top 10 file system objects utilizing the most inodes in the current folder.


Thank you..!
 
You seem to be running an AUTO backup schedule on your server. (You will need to disable it and then through SHELL, delete the plesk temporary backup file located at /usr/local/psa/PMM/tmp/ and if necessary /var/lib/psa/dumps/)
 
Hello,

You can use the following command to check directory inodes usages.

Code:
for i in `ls -1A | grep -v "\.\./" | grep -v "\./"`; do echo "`find $i | sort -u | wc -l` $i"; done | sort -rn | head -10

It outputs the top 10 file system objects utilizing the most inodes in the current folder.


Thank you..!

Thanks InderS,

this is the output :

folder root

find: File system loop detected; `var/named/chroot/var/named' is part of the same file system loop as `var /named'.
1448739 var
71948 usr
19757 proc
1521 root
1262 etc
355 lib
346 lib64
340 sys
154 dev
147 sbin

ok, is var the problem, but were?

folder var

sort: cannot create temporary file in `/tmp': Disk quota exceeded
132620 www
10459 lib
161 cache
93 log
81 named
47 spool
47 run
18 lock
3 parallels
3 db


ah, var/tmp it seems empty

this is my disk usage:

resource Used Free Total
Disk Space 13.52 GB 67.6% 6.48 GB 20.00 GB
Disk Inodes 1,529,618 100% 0 1,529,618

some idea?
Thanks
Ale
 
Find it!

the issue is in qmail
The InderS 's command not showing it coz it can't write in /tmp (the inodes are full :))

for some users

queue/rempte
queue/mess

are full of ****

i think in be a qmail attach
Now i ll try to solve the problem

Thanks to everyone
 
Thanks Abdi,

yes i run some backup (one general and one for every website...) but the issue was made by qmail
Now i'm purgin the queue.

If u want, when i find the problem that caused, i can explain it better
 
Back
Top