FS Utilization Issue

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat FS Utilization Issue
# 1  
Old 06-25-2012
FS Utilization Issue

Hi,

I have inherited a server that is experiencing a FS utilization issue.

The /home (below) is being utilized by the other mounted FS even though they belong to 2 different vg's.

Code:
/dev/mapper/VolGroup00-home_vol
3.9G 3.7G 0 100% /home
 
/dev/mapper/vg01-lvol0
394G 306G 68G 82% /home/oracle/pcm/dbbkup

With the exception of the /home/oracle directory all other sub-directories within /home only accumulate to 1G in size therefore the oracle home directory is consuming the space.

Do I need to remount the latter dir as something else or is there an easier way of resolving this?

R,
D.
# 2  
Old 06-25-2012
When accumulating all directories below /home, you have to count /home/oracle too, minus the size of /home/oracle/pcm/dbbkup, as this is as you stated a separate FS. The sum should be about 3,7 GB then.
You might have to do some clean up in form of moving, compressing/archiving or deleting files. If these are no option, you will have to add some space if possible.
# 3  
Old 06-25-2012
Hi,

This however is not the case.....

The strange thing is that the latter dir is only 400G but is showing as over 500G from the du command

Code:
# pwd  
/home/oracle
[root@mvdbs2 oracle]# du -sh .
533G    .

R,
D.
# 4  
Old 06-25-2012
Please post what Operating System and version you are using.

I think you should be using the -x parameter to du (to confine it to the current filesystem).
Code:
du -shx .

This User Gave Thanks to methyl For This Post:
# 5  
Old 06-25-2012
Hi,

Using RHEL5. You are absolutely correct:

Code:
# du -shx .
2.8G    .

R,
D.
# 6  
Old 06-25-2012
Quote:
With the exception of the /home/oracle directory all other sub-directories within /home only accumulate to 1G in size therefore the oracle home directory is consuming the space.
If this is true then the problem should be visible in:
Code:
find /home/oracle -xdev -type f -size +1000000c -exec ls -lad {} \;

Note the use of -xdev to confine the search to the filesystem /home .
If you don't find any large files and have been deleting files, you may have deleted files which are open by an application in which case you will not get the disc space back until you close the application or reboot the server.
# 7  
Old 07-06-2012
A quick way in Linux and most other SysV-based Unixes to find out which process is holding onto a file that would otherwise be deleted is the fuser command. it even has a -k option though I have always either manually sent signals or had a script to clear such out. Useful on old systems with many active serial connections that get clogged up.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Need help on memory utilization.

I have run the utility nmon in aix 6.1, and found memory utilization is 99.9% in physical. and pressed h key and then t , in that it is not showing single process which is consuming memory resources. please help me how to find out actual memory utilization. wheather 99% is real memory... (1 Reply)
Discussion started by: manoj.solaris
1 Replies

2. Red Hat

CPU Utilization and Memory Utilization of Services and Applications

Hi, i am new to linux/RHEL 6.0 and i have two questions. 1) How to get the CPU utilization and Memory Utilization of all Services running currently? 2) How to get the CPU utilization and Memory Utilization of all Applications running currently? Please help me to find the script. ... (2 Replies)
Discussion started by: nossam
2 Replies

3. SuSE

Memory utilization issue

I have parallels container running on Suse. From top command, I am not able to see, what is eating up so big amount of memory. top - 07:44:24 up 172 days, 18:52, 1 user, load average: 0.01, 0.02, 0.00 Tasks: 44 total, 1 running, 43 sleeping, 0 stopped, 0 zombie Cpu(s): 0.0%us, ... (1 Reply)
Discussion started by: solaris_1977
1 Replies

4. Red Hat

CPU Utilization issue

I am working in C,C++ Telecom Provisioning application which is running in LINUX Red Hat Server. My application is running with several process like scmng,scspf, etc.. We have Log level setting for each process like 0,5,10,20. If I set the FLOW level as 0, then it will not print any log info in... (1 Reply)
Discussion started by: rkarthi2k5
1 Replies

5. Web Development

Apache memory utilization issue

Hi, I have been running into an issue wherein suddenly an apache process eats up lots of memory and system starts swapping. It causes the server to hang due to io-wait. I am able to trace the process/thread which is eating up memory, however, am unable to figure out which webpage is causing it.... (1 Reply)
Discussion started by: vish_indian
1 Replies

6. UNIX for Dummies Questions & Answers

Disk utilization

Hi, I have hundred folders under a fs /apps which is used by different users and they upload their data to these folders on a daily basis. Using du -sk gives me complete structure of the filesystem but i want to find out day to day utlization of the top ten highest accoriding to size wise ... (4 Replies)
Discussion started by: chetansingh23
4 Replies

7. UNIX for Dummies Questions & Answers

CPU Utilization Issue

Hello everyone. I have a problem with my HP-UX (UNIX) server Recently my unix shows a high cpu utilization and idle = 0% ,checked using sar command I need to find what I have to do to solve this problem, in fact, I don't know what is my problem. Mentioned below is the sar command output. ... (8 Replies)
Discussion started by: yadvinder
8 Replies

8. HP-UX

memory utilization

command for checking memory utilization in HP -UX (2 Replies)
Discussion started by: tushar_spatil
2 Replies

9. AIX

CPU Utilization

Hi All, Can some one help me in finding % CPU Utilization ? From VMSTAT command, How we can find % utilization ? Thanks (3 Replies)
Discussion started by: VBudatha
3 Replies

10. UNIX for Advanced & Expert Users

CPU Utilization

On user complains about the performance of web application, as a part application support, we use following commands to see the CPU utilization in the UNIX using ‘sar' command. Some times it goes below 20 and even reaches 0. HLW$~> sar -u 10 60 SunOS HLW 5.8 Generic_117350-14 sun4u ... (2 Replies)
Discussion started by: thinakarmani
2 Replies
Login or Register to Ask a Question