- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Where are system logs?
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
04-18-2006 04:46 AM
04-18-2006 04:46 AM
Where are system logs?
:-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2006 04:50 AM
04-18-2006 04:50 AM
Re: Where are system logs?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2006 04:53 AM
04-18-2006 04:53 AM
Re: Where are system logs?
What logs are you wanting to see?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2006 04:54 AM
04-18-2006 04:54 AM
Re: Where are system logs?
startup lop /etc/rc.log
other logs are /var/adm amd /var/adm/syslog
you can view them with the cat command, more command, or even vi.
more /var/adm/syslog/syslog.log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2006 07:13 AM
04-18-2006 07:13 AM
Re: Where are system logs?
The different logs are in
/var/adm
sulog
shutdownlog
/var/adm/syslog
syslog.log
mail.log
Rgds
HGN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2006 01:08 PM
04-18-2006 01:08 PM
Re: Where are system logs?
If you are looking for syslog locations.
I would first look at /etc/syslog.conf.
this is were the locations are defined and could be modified on your system.
Rory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2006 07:34 PM
04-18-2006 07:34 PM
Re: Where are system logs?
there are a few that hide in not too intuitive places.
So another hot candidate is /var/opt.
e.g.
Resource monitoring events go here
/var/opt/resmon/log/event.log
Your last system recovery backup log goes here
/var/opt/ignite/recovery/latest/recovery.log
(n.b. latest is a symlink pointing to the latest ignite subdir)
If you need to track down any difficulties with software or patch installation etc. there are the various logs
/var/adm/sw/sw*.log
Since it is common practice to place logfiles of most applications and services beneath /var on most Unices you might find many more if you run a find like
# find /var -type f -name \*log
If an application is logging via syslogd
you could look for used log facilities in
/etc/syslog.conf
But in the end nothing hinders an application developer from logging anywhere they deem appropiate, of course required permissions assumed.
So you need to consult the documentation of the various applications to be sure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2006 05:06 PM
04-19-2006 05:06 PM
Re: Where are system logs?
I hope help you one time.
CU. :-D