- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Important system log files and key words
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
09-17-2002 10:27 PM
09-17-2002 10:27 PM
Important system log files and key words
I am just trying to compile a definitive list of all the important log files to monitor (like syslog.log), together with their respective standard locations necessary to warn of impending system problems or critical events.
Also the necessary keywords to select by a regex for important system messages warning of doom within the logs respectively, so I can create an automated monitoring script with Perl or whatever to make our sysadmin monitoring more effective. Of course if anyone already has any tools like this it could be helpful too !
The system is an L1000 running HP-UX 11i.
Any info., links, guidelines, advice or whatever appreciated.
All the best.
Rob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2002 10:34 PM
09-17-2002 10:34 PM
Re: Important system log files and key words
In addition to that you can also grep for errors like vmunix, LPMC, HPMC etc. and mail it to you.
Dmesg is also important. you can append dmesg output in syslog.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2002 12:08 AM
09-18-2002 12:08 AM
Re: Important system log files and key words
SAM has a function for trimming system logfiles (Routine Tasks - System Log Files): this very detailed list is kept in /var/sam/rt/
Depending on what else you have on the system, there might be logfiles also under /opt
regards,
John K.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2002 12:15 AM
09-18-2002 12:15 AM
Re: Important system log files and key words
/var/adm/syslog/syslog.log
lbolt (indication of disk/tape drive problems)
SCSI: Reset (as above)
fork: Not enough space (out of processes)
table is full (nfile/ninode exceeded)
AC POWER FAILURE (UPS monitoring)
EMS Event Notification (error from EMS system)
Temperature exceeded (obvious)
cmcld (Service Guard errors)
/var/adm/syslog/mail.log
unable to qualify my own domain name (system name resolution problem)
WARNING: dangerous write permissions (permissions risk on file specified)
Name server: your.host.net : host not found (system unable to resolve mail target address)
/var/opt/resmon/log/event.log (EMS monitoring)
Hardware failure (failure of listed component)
power supply has failed (obvious)
Drive is not responding (listed disk problem)
/var/adm/rc.log (system boot)
ERROR
FAILED
EXIT CODE:
All 3 of the above can indicate failure of a startup script.
Any application logs - errors would depend on the application.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2002 10:55 AM
09-18-2002 10:55 AM
Re: Important system log files and key words
If you have a redhat linux system handy, it's installed by default: rpm -ql logwatch
Main site is:
http://www.logwatch.org
For the most part it works not by listing what to watch for, but rather by listing what NOT to watch for, which is much more likely to catch problems.