- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Filesystem reporting 100% when there is 16GB o...
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-22-2005 05:46 AM
08-22-2005 05:46 AM
Filesystem reporting 100% when there is 16GB of space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 05:53 AM
08-22-2005 05:53 AM
Re: Filesystem reporting 100% when there is 16GB of space
fuser /oradata/tmp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 05:53 AM
08-22-2005 05:53 AM
Re: Filesystem reporting 100% when there is 16GB of space
The inode is gone, that's why you don't see the file name in the list, but the allocated space is still there. The only way to clean it is to shutdown the application that uses this space. How?
Use "fuser -k /filesystem" if you wanna kill all the procs there, or use "lsof /filesystem" to view the PID of the procs that uses it and remove the one you think locks the space.
You can get the lsof program here:
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.75/
Highly recommended program.
Alex.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 05:55 AM
08-22-2005 05:55 AM
Re: Filesystem reporting 100% when there is 16GB of space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 05:56 AM
08-22-2005 05:56 AM
Re: Filesystem reporting 100% when there is 16GB of space
fuser -c /oradata/tmp
will show you the PIDs holding the space "hostage" Unles you can pinpoint which process this was and kill/restart it, you will not see your space freed up in bdf output.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 06:00 AM
08-22-2005 06:00 AM
Re: Filesystem reporting 100% when there is 16GB of space
/oradata/tmp:
#
The command didn't return anything. I cannot kill all processes accessing this filesystem since it is in use for all of our development databases. I would like to kill any process still trying to access the file I removed, but, it doesn't look like anything is accessing it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 06:01 AM
08-22-2005 06:01 AM
Re: Filesystem reporting 100% when there is 16GB of space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 06:11 AM
08-22-2005 06:11 AM
Re: Filesystem reporting 100% when there is 16GB of space
Yes, if you shutdown/start DB the space will be released, another option is to wait...after some time the space is released (1 or 2 hours...)
Enjoy :)
Pedro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 06:21 AM
08-22-2005 06:21 AM
Re: Filesystem reporting 100% when there is 16GB of space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 06:45 AM
08-22-2005 06:45 AM
Re: Filesystem reporting 100% when there is 16GB of space
"DO NOT REMOVE FILES WITH *RM*! Use "cat /dev/null > /some/file"!"
As you can see, very good advice :)
rm, does not remove the file. It only removes the inode. So, when you use "cat /dev/null", you actually empty the file's space and only then you "rm" the inode. This way you can avoid this problem in the future.
Alex.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 07:07 AM
08-22-2005 07:07 AM
Re: Filesystem reporting 100% when there is 16GB of space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 07:19 AM
08-22-2005 07:19 AM
Re: Filesystem reporting 100% when there is 16GB of space
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 07:39 AM
08-22-2005 07:39 AM