- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to collect log
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
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
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
тАО07-28-2008 03:17 AM
тАО07-28-2008 03:17 AM
How to collect log
I have hp9000 (rp4440/7420/8420) servers.
Please help me. How can I collect the copy for these following logs?
1. MP log
2. /var/adm/syslog/syslog.log
3. dmesg
4. /etc/rc.log
5. core dump generated
Best regards,
Alamgir Khan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-28-2008 03:25 AM
тАО07-28-2008 03:25 AM
Re: How to collect log
>>1. MP log
login with putty and then save the session outputs in settings menu.session>logging> then choose log file name.
>>2. /var/adm/syslog/syslog.log
do ftp
>>3. dmesg
#dmesg >/tmp/dmesg.txt
and then do ftp
>>4. /etc/rc.log
do ftp
>>5. core dump generated
find coredump using find command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-28-2008 04:23 AM
тАО07-28-2008 04:23 AM
Re: How to collect log
How can I generate core dump?
Best regards,
Alamgir Khan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-28-2008 04:45 AM
тАО07-28-2008 04:45 AM
Re: How to collect log
Normally the intention is to not create them. :-)
You can send SIGQUIT to a dummy process.
Or you can write a C application with an error.
Note a core dump isn't really a log.
Are you sure you weren't asking about a crash dump of the kernel?
- Tags:
- SIGQUIT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-28-2008 04:59 AM
тАО07-28-2008 04:59 AM
Re: How to collect log
$ find / -name core* ├в exec file {} \;
To generate the core
$ kill -TRAP pid_#_of_process├В ├В ├В
$ kill -ILL├В pid_#_of_process├В