Filesystem full error

General support questions including new installations
bakyaraj
Posts: 11
Joined: 2016/10/05 15:53:58

Filesystem full error

Post by bakyaraj » 2016/10/05 16:04:53

When i check / fileystem for space using df -h it shows 100% full but it utlilized only 25 % of that filesystem.

/dev/mapper/VolGroup00-LogVol00 113G 108G 0G 100% /

/dev/mapper/VolGroup01-disk 10997G 4061G 6378G 39% /new/disk


And i have verified all the directories inside / partition, it utilized only 26G. And there is no hidden files or directories inside the / partition .
Dont know what is happening.

Kindly help me on this.

Thanks.

aks
Posts: 3073
Joined: 2014/09/20 11:22:14

Re: Filesystem full error

Post by aks » 2016/10/05 16:10:56

As a guess inode list full (df -ih to check)?

bakyaraj
Posts: 11
Joined: 2016/10/05 15:53:58

Re: Filesystem full error

Post by bakyaraj » 2016/10/05 16:19:19

That is also i have verified

/dev/mapper/VolGroup00-LogVol00 30M 175K 29M 1% /

User avatar
avij
Retired Moderator
Posts: 3046
Joined: 2010/12/01 19:25:52
Location: Helsinki, Finland
Contact:

Re: Filesystem full error

Post by avij » 2016/10/05 16:51:29

du -x / | sort -rn | more is my favourite command to find the directories consuming the most space.

Perhaps you have some processes which are still using some removed gigantic file. lsof -n | grep -i del may help in that. If, for example, you see that httpd is accessing a deleted error_log file, try restarting the service with service httpd restart.

bakyaraj
Posts: 11
Joined: 2016/10/05 15:53:58

Re: Filesystem full error

Post by bakyaraj » 2016/10/05 17:18:06

Thanks avij,

Yes that command shows very big list.And it is a TSM server. It was restarted before.
But it shows again

User avatar
avij
Retired Moderator
Posts: 3046
Joined: 2010/12/01 19:25:52
Location: Helsinki, Finland
Contact:

Re: Filesystem full error

Post by avij » 2016/10/05 17:44:54

... and?

If you run that du -x / | sort -rn | more command, what does the top line say? Is it something around 108 gigabytes or 26 gigabytes?

User avatar
TrevorH
Site Admin
Posts: 33221
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: Filesystem full error

Post by TrevorH » 2016/10/05 18:19:15

What method are you using to determine that it's only using 25%?
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

bakyaraj
Posts: 11
Joined: 2016/10/05 15:53:58

Re: Filesystem full error

Post by bakyaraj » 2016/10/05 18:39:20

Hi avij,

It shows in the first line.
110497026 /

The result of that command.

bakyaraj
Posts: 11
Joined: 2016/10/05 15:53:58

Re: Filesystem full error

Post by bakyaraj » 2016/10/05 18:41:47

Hi TrevorH

I just checkd with du -sh /*

and it lists only two directories are in GB. its nearly 26G

User avatar
TrevorH
Site Admin
Posts: 33221
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: Filesystem full error

Post by TrevorH » 2016/10/05 18:45:58

Run this as root and post the output

Code: Select all

du --max-depth=1 -x -m /
The directory that is listed there that takes up the most space is where you need to look next. Repeat the command and change / to /whatever the directory is that uses most space. Keep doing that until you reach the bottom of the tree.
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

Post Reply