- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: File system full
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2002 11:20 PM
02-28-2002 11:20 PM
Hello
Actual utilization of filesystem is only 261 MB but bdf shows 100 % full.
This happens after running a java program (server - client socket program).This particular program doesn't store any data in the filesystem.
If I stop all applications then it releases the disk usage and bdf shows the actual disk usage (261 MB).
#bdf
/dev/vgfeed/lvopr 512000 512000 0 100% /home/opr
# du -sk /home/opr
510707 /home/opr
Please help me on this matter.
Rgds
Manoj
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2002 11:34 PM
02-28-2002 11:34 PM
Re: File system full
You have opened file(s) whereby the process holding on to these file(s) is still running but the file(s) have been removed.
Try to perform either fuser on lsof on the filesystem to identify which are the process(es) holding on to these files and terminate them.
# fuser -u /home/xyz
# lsof |grep /home/xyz
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2002 11:43 PM
02-28-2002 11:43 PM
Re: File system full
fuser -u /home/opr to see the list of process running on this folder and use ps -ef | grep
-Vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2002 12:28 AM
03-01-2002 12:28 AM
Re: File system full
When the applications are running, you might have some big file. Just make a "fuser -u $file" to know which process are very glutton in space disk.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2002 01:30 AM
03-01-2002 01:30 AM
Re: File system full
I checked the files opened by fuser and lsof commands.
It shows only executables running from that filesystem opened by application. It is not opening any other files from that filesystem.
I am attaching the output of fuser and lsof.
If you have other suggestion on this please revert me.
Rgds
Manoj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2002 03:28 AM
03-01-2002 03:28 AM
Re: File system full
which filesystem are you using? vxfs or hfs?
if you are using hfs, check the minfree settings which tunefs.
Heiner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2002 04:49 AM
03-01-2002 04:49 AM
SolutionIts likely that one of the applications is creating/opening a file, then immediately unlinking its directory entry so that other applications cannot see it but the disk space remains in use. This is bad programming as it causes administrative headaches as you've seen.
To confirm this, run a tusc trace on the application while it is starting up - this will show the sequence of system calls and allow you to prove what the program is doing. Then ask the programmers to rectify this!
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2002 06:43 AM
03-01-2002 06:43 AM
Re: File system full
Hello all
Thanks to everybody..
I could traced out the log file opened by application.After deleting the file filesystem usage reduced to normal condition.
Regards
Manoj