- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: syslog error
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
01-21-2004 08:35 PM
01-21-2004 08:35 PM
syslog error
in my syslog I find:
Jan 21 13:26:39 rmprsl20 vmunix: vxfs: mesg 056: vx_dataioerr - /dev/vg01/lvol3 file system file data read error
Jan 21 13:29:36 rmprsl20 EMS [1307]: ------ EMS Event Notification ------ Value: "CRITICAL (5)" for Resource: "/storage/events/disks/default/0_3_0_0.0.0" (Threshold: >= " 3") Execute the following command to obtain event details: /opt/resmon/bin/resdata -R 85655696 -r /storage/events/disks/default/0_3_0_0.0.0 -n 85655553 -a
Ok...there are some problem on lvol3...but
What does it mean the EMS's message??
Can you interpretate better this message?
Thanx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2004 08:50 PM
01-21-2004 08:50 PM
Re: syslog error
It looks like a critical error with a disk.
Run the sugetsted command for more info: /opt/resmon/bin/resdata -R 85655696 -r /storage/events/disks/default/0_3_0_0.0.0 -n 85655553 -a
Regards,
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2004 09:22 PM
01-21-2004 09:22 PM
Re: syslog error
probably two messages indicate the same problem, problem on a bad disk.
Peter's suggestion about docs.hp.com is the best suggestion.
Just a question: do bdf and lvdisplay show the same size for /dev/vg01/lvol3?
I have seen that message about vx_dataioerr message when sizes are different between those commands.
As I always say: just a thought....
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 11:31 PM
01-22-2004 11:31 PM
Re: syslog error
Is it a SCSI or Fiber disk?
We had a while ago the same problem with an MA8000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 03:26 PM
01-25-2004 03:26 PM
Re: syslog error
Just run the command as given by EMS to get the detailed error "/opt/resmon/bin/resdata -R 85655696 -r /storage/events/disks/default/0_3_0_0.0.0 -n 85655553 -a"
It is giving some error of "reset" or can say connection reset may.
bhanu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 11:39 PM
01-25-2004 11:39 PM
Re: syslog error
The only way to make a complete check of your (hard)disks is to read every block of you physical volume, with the "dd" command.
If lvol3 is located on /dev/dsk/c1t15d0, for example (check with lvdisplay -v /dev/vg00/lvol3), just run :
dd if=/dev/rdsk/c1t15d0 of=/dev/null bs=1024k
It just reads all blocks (if=input file)of /dev/rdsk/c1t15d0 (don't forget the "r"dsk), searching for a bad one, writing what is read nowhere (/dev/null).
If the command returns an error, your disk as a problem. If everything is ok, number of read records must be equal to number or write records (36000 in my case) :
36000+0 records in
36000+0 records out
It takes 20 minutes to check a entire 36Go SCSI ULTRA-3 disk.
Olivier.