- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- BDF shows 100% - but no files on file system
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
10-12-2001 12:01 PM
10-12-2001 12:01 PM
Our system has several file systems that are near full. In attempt to relieve that, the DBA cleaned out some tablespaces and delete most all files using sudo user.
One would expect to see space available to grow but that is not the case. File system still shows 100% full.
Any ideas?
Thanks!
Josee...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2001 12:06 PM
10-12-2001 12:06 PM
Re: BDF shows 100% - but no files on file system
You can either attempt to stop any processes and unmount the fs, then remount it, or use something like lsof to try to find processes that have filesopen on the fs and then stop these processes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2001 12:08 PM
10-12-2001 12:08 PM
Re: BDF shows 100% - but no files on file system
Hope this helps.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2001 12:11 PM
10-12-2001 12:11 PM
Re: BDF shows 100% - but no files on file system
This is due to the file that are opened by the procesess. Best thing is to unmount and mount it again. If you can't unmount, you need to kill the processes that are active on teh file system. Use fuser -u /dev/vgxx/lvolx to see the processes that are holding this logical volume up.
Once it is unmounted and mounted, you will see it back 0%.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2001 12:18 PM
10-12-2001 12:18 PM
Re: BDF shows 100% - but no files on file system
This is not an unusual situation in UNIX. A process can open a file, then unlink (rm) it;
and until that process closes it, the process can read, write, seek, etc. - there is no directory entry but the space is not returned to the filesystem until the file handle is closed.
You can use fuser or a freeware utility lsof which is available from any of the HP-UX porting centers to find these processes.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2001 12:19 PM
10-12-2001 12:19 PM
Re: BDF shows 100% - but no files on file system
As others pointed out in this thread,
the culprit could be a "running process"
which is writing to a file whose "file handle"
is open. That is why, even though you
don't see any files in the FS, it is writing
to the "file handle" which is consuming space.
You can do a fuser -cu
and get the processes currently using
the filesystem. Then, make sure you can
kill those processes without affecting
anything else on the system. If it is
a oracle-related process, check with the DBA.
Another good tool to use would be "lsof" .
It lists all open files on the system or
processes running on a system which have
open files.
-raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2001 02:49 AM
10-15-2001 02:49 AM
SolutionThe database will continue to run, but you will have problems closing it, if ORACLE you will will to "shutdown abort" and remember to check if it autostart on system bootup via /etc/inittab.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2001 02:59 AM
10-15-2001 02:59 AM
Re: BDF shows 100% - but no files on file system
You seem to have open files on that file system. If the database is still up, the files will not be closed.
DBA should use shutdown abort command.
If you get the tool 'lsof', it might help you along.
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2001 03:49 AM
10-15-2001 03:49 AM
Re: BDF shows 100% - but no files on file system
or here:
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.55/
Then run it like this:
lsof | grep filesystemnamehere
It'll give you the processes that have a file open on the filesystemnamehere
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2001 04:01 AM
10-15-2001 04:01 AM
Re: BDF shows 100% - but no files on file system
Jayaprakash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2001 07:34 AM
10-17-2001 07:34 AM
Re: BDF shows 100% - but no files on file system
One or all of these may be hogging the i-nodes. At you convienience shutdown the applications attached to the above PID's. That should clear it.
Tim