- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Any way of checking if filesystem was full
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
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
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-11-2006 08:38 PM
тАО12-11-2006 08:38 PM
One of our developers was running a program on our test machine last night & it failed at some point. He thinks that the filesystem he was using may have become full. It's not full now as a cleanup job is run every mornong so that could habve removed files older than a certain date. Is there any log which records "File system full". On some flavour of Unix I worked on, there used to br a var/log/console which recorded all messages sent to the console which included any filesystems full. Anything like that on HPUX.
Thanks,
TIm
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-11-2006 08:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-11-2006 08:46 PM
тАО12-11-2006 08:46 PM
Re: Any way of checking if filesystem was full
you can check /var/adm/syslog/syslog.log
that will tell you what filesystem was full
or you can run the following command:
dmesg
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-11-2006 08:54 PM
тАО12-11-2006 08:54 PM
Re: Any way of checking if filesystem was full
Problem solved. Found message & file system was full. Thanks for the replies. Points assigned.
Many Thanks,
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-11-2006 09:02 PM
тАО12-11-2006 09:02 PM
Re: Any way of checking if filesystem was full
we have a similar utility script that runs every hour and alerts us on any error messages at the kernel level.
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-12-2006 01:34 AM
тАО12-12-2006 01:34 AM
Re: Any way of checking if filesystem was full
05,15,25,35,45,55 * * * * /usr/sbin/dmesg - >>/var/adm/dmesg.log
Note the very critical - (minus or dash) that tells dmesg to display only new messages (or nothing is no new messages). The - option also timestamps new messages.
The attached script will monitor filesystems and send notices by email, to syslog and/or notify OpenView ITO.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-12-2006 01:45 AM
тАО12-12-2006 01:45 AM
Re: Any way of checking if filesystem was full
You can check this with syslog.log and dmesg.
You will find the vxfs:filesystem full message in syslog.log with timestamp.
If you rebooted the system since the filesystem full message , you can find it in OLDsyslog.log ,
Also you can write a small script to redirect the dmesg messages to any logfile as outlined by Bill,
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-12-2006 01:57 AM
тАО12-12-2006 01:57 AM
Re: Any way of checking if filesystem was full
Thanks,
Tim