- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Filesystem /tmp reported full but it is not
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-07-2006 01:01 AM
12-07-2006 01:01 AM
Filesystem /tmp reported full but it is not
# bdf /tmp
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol5 524288 523466 822 100% /tmp
# du -ks /tmp
40 /tmp
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 01:03 AM
12-07-2006 01:03 AM
Re: Filesystem /tmp reported full but it is not
Most common cause is a file handle is open on a file that has been deleted. The space does not get relased until the file handle is.
fuser -cu /tmp
If you can identify the process and kill it you will get the space back.
The man page for fuser explains the letter tags next to the numeric process id.
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
12-07-2006 01:03 AM
12-07-2006 01:03 AM
Re: Filesystem /tmp reported full but it is not
fuser -cu /tmp
will report you the open processes holding this file .
Stop them or wait the process to finish , most probably it is writting something to /tmp .
Then your /tmp should be fine.
Thanks,
siva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 01:04 AM
12-07-2006 01:04 AM
Re: Filesystem /tmp reported full but it is not
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 01:04 AM
12-07-2006 01:04 AM
Re: Filesystem /tmp reported full but it is not
he uses as referencia bdf therefore du -sk if bases on blocagem not considering links
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2006 02:33 AM
12-07-2006 02:33 AM
Re: Filesystem /tmp reported full but it is not
Like Steven said. there could be an application that still holding open a file. By using the fuser command you should be able to see what process my have open files in /tmp. Plus of also see if there are some large files created in that directory that can be removed.
sp,