- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- File System constantly filling up
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
12-14-2005 12:19 AM
12-14-2005 12:19 AM
Can anyone clue me in on what's going? The file is attached. Thank you!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 12:28 AM
12-14-2005 12:28 AM
SolutionSometimes there are files open by applications and remiving them do not free up the space unless allication is restarted. Have you removed some such files recently? If yes then restarting the application will release the actual space.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 12:29 AM
12-14-2005 12:29 AM
Re: File System constantly filling up
If you do a fuser -u /dev/vg03/lvol38 you will see the process IDs using that filesystem and you can whittle down which process you need to stop in order to "unlock" the space again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 12:32 AM
12-14-2005 12:32 AM
Re: File System constantly filling up
As the file system is in use by oracle. Stopping or killing an process ID is not the recommended way. I again say if some such files were removed recently then restart applciation.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 12:36 AM
12-14-2005 12:36 AM
Re: File System constantly filling up
I agree with denver.
Probebly an actieve file was removed.
To free this space up you have to restart the application.
grtz. Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 12:40 AM
12-14-2005 12:40 AM
Re: File System constantly filling up
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 12:43 AM
12-14-2005 12:43 AM
Re: File System constantly filling up
Check your top processes. Do you see any oracle processes which could have gone astray?
you can check if the oracle process is still active at the database level using the following sql statement:
select b.sid SID,b.serial# "Serial#", c.spid "srvPID", b.osuser, b.username, b.status, b.client_info from v$session b, v$process c where b.paddr = c.addr and c.sPID = &OSPID
you may also change the location of your files (arch, udump, bdump and cdump)
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 12:49 AM
12-14-2005 12:49 AM
Re: File System constantly filling up
You can use lsof to pinpoint the open file to solidify your point to the DBA.
Left unchecked, it's likely this will cause other problems and the process will die in time with an "out of space" error or something, so.... stop it now or deal with possible DB problems when it dies, his choice.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 01:00 AM
12-14-2005 01:00 AM
Re: File System constantly filling up
The idea of apps with temporary files is very possible.
Do you mount any filesystems onto the oracle file system?
At times a file could get written to that mount point if the sub-filesystem wasn't mounted at the time.
Generally, I like to do:
find . -size +10000000c -print
which will show you files of 10 meg or more ... if that's too big of a list then add a zero and find the 100 meg files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 01:26 AM
12-14-2005 01:26 AM
Re: File System constantly filling up
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 02:46 AM
12-14-2005 02:46 AM
Re: File System constantly filling up
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 02:52 AM
12-14-2005 02:52 AM
Re: File System constantly filling up
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 05:28 AM
12-14-2005 05:28 AM
Re: File System constantly filling up
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 05:41 AM
12-14-2005 05:41 AM