- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- BDF and filesystem info.
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
08-02-2004 05:56 AM
08-02-2004 05:56 AM
Heres a classic problem but maybe a new solution has been found.
My /var filesystem blew up to 94% full due to a at job going astray. I have deleted the offending file but bdf shows no difference. However, the du command does , I would need to resolve bdf in order to calm my users.
In an attempt to fix this, I have moved and rebuilt /etc/mnttab, no changes. The problem file was deleted, so im assuming there are no remanant processes.
I know i dont have the latest bdf patch, but am looking for any other suggestions before rebooting the box (not really an option right now) any new ideas?
Thanks in advance,
Richard
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2004 06:02 AM
08-02-2004 06:02 AM
Re: BDF and filesystem info.
It certainly sounds like a process is still holding that file table entry open. Are you sure there are no processes still referencing the file?
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2004 06:04 AM
08-02-2004 06:04 AM
Re: BDF and filesystem info.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2004 06:08 AM
08-02-2004 06:08 AM
Re: BDF and filesystem info.
lsof can help you id the process to kill.
Don't do a general kill (fuser -cuk) on /var it will stop your system cold.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2004 06:11 AM
08-02-2004 06:11 AM
Re: BDF and filesystem info.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2004 06:14 AM
08-02-2004 06:14 AM
SolutionYou can easily remove a file (more properly unlink it) and all that really happens is that the file's link count is decreased by one. Only when a file's link count goes to zero AND the file is not open by any process will the space actually be freed. As soon as the link count goes to zero, the directory entry is removed but the files contents remain intact and can even been extended. This is actually a standard way of creating a temporary file. After opening it, you instantly unlink it but can continue to operate on it until the file is closed. All traces then dissappear. Get yourself a copy of lsof and use it; it'a better than using fuser for finding these.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2004 06:15 AM
08-02-2004 06:15 AM
Re: BDF and filesystem info.
Thanks gents
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2004 05:11 AM
10-25-2004 05:11 AM