- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - HP-UX
- >
- System Administration
- >
- Harddisk status
-
- Forums
-
Blogs
- Alliances
- Around the Storage Block
- Behind the scenes @ Labs
- HPE Careers
- HPE Storage Tech Insiders
- Infrastructure Insights
- Inspiring Progress
- Internet of Things (IoT)
- My Learning Certification
- OEM Solutions
- Servers: The Right Compute
- Shifting to Software-Defined
- Telecom IQ
- Transforming IT
- Infrastructure Solutions German
- L’Avenir de l’IT
- IT e Trasformazione Digitale
- Enterprise Topics
- ИТ для нового стиля бизнеса
- Blogs
-
Quick Links
- Community
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Contact
- Email us
- Tell us what you think
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Enterprise.nxt
- Marketplace
- Aruba Airheads Community
-
Forums
-
Blogs
-
InformationEnglish
- 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
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-07-2009 11:48 PM
07-07-2009 11:48 PM
Harddisk status
i got the following in the syslog.log
# ----------------
Jun 26 15:50:51 unixdb vmunix: SCSI: Request Timeout; Abort Tag -- lbolt: 183112
891, dev: 1f021000, io_id: 272afbd
Jun 26 15:50:54 unixdb EMS [2650]: ------ EMS Event Notification ------ Value:
"CRITICAL (5)" for Resource: "/storage/events/disks/default/0_1_1_0.1.0" (T
hreshold: >= " 3") Execute the following command to obtain event details:
/opt/resmon/bin/resdata -R 173670405 -r /storage/events/disks/default/0_1_1_0.1.
0 -n 173670401 -a
Jun 26 15:52:49 unixdb EMS [2650]: ------ EMS Event Notification ------ Value:
"CRITICAL (5)" for Resource: "/storage/events/disks/default/0_1_1_0.1.0" (T
hreshold: >= " 3") Execute the following command to obtain event details:
/opt/resmon/bin/resdata -R 173670405 -r /storage/events/disks/default/0_1_1_0.1.
0 -n 173670402 -a
Jun 26 15:58:46 unixdb vmunix:
Jun 26 15:58:46 unixdb vmunix: SCSI: Request Timeout; Abort Tag -- lbolt: 183160
396, dev: 1f021000, io_id: 272bc8d
Jun 26 16:11:45 unixdb vmunix: SCSI: Request Timeout; Abort Tag -- lbolt: 183238
214, dev: 1f021000, io_id: 272d05a
# -------------------
i'm not sure whether the disk has failed or not
# ioscan --> s/w state CLAIMED
# pvdisplay --> PV State available
but the Event Monitoring Service is saying that the resource is down
I checked physically the disk leds and it looks normal.
NB: the disk has a mirrored copy
can you please help?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-07-2009 11:59 PM
07-07-2009 11:59 PM
Re: Harddisk status
/var/opt/resmon/log/event.log
have you added or removed disks from the system recently ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-08-2009 12:00 AM
07-08-2009 12:00 AM
Re: Harddisk status
#!/bin/sh
##This script created for testing any stale extents in Lvol
##If in the output any stale extents are found,pls report directly to Unix admin
####################################################
##Uncomment the next line if debug mode needed
#set -x
touch ~
for i in `bdf | awk '{ print $1}'| grep -v Filesystem`
do
lvdisplay -v $i > ~techsup1/if_any_stale
grep -i stale ~
val=`echo $?`
###echo $val
if [ $val -ne 1 ];then
echo "Logical Volume '$i' had stale volumes"
else
echo "Logical Volume $i OK"
fi
done
rm ~
check in syslog of message "lbolt", do u find "recovered " in also there.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-08-2009 12:09 AM
07-08-2009 12:09 AM
Re: Harddisk status
The EMS message indicates one of two things:
1) The disk has actually failed. This can be confirmed by dd if=/dev/dsk/c1t1d0 of=/dev/null bs=1024 count=10000 (use a real disk device) or cstm mstm xstm disk exercise function.
2) A hot swap disk has been removed from the system and put back in or switched, which results in an lbolt warning which stays around until either a reboot or a dmesg - or dmesg -c. One of those two commands is HP-UX, the other is Linux. I mix them up and usually end up trying both. They are harmless if done wrong.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-08-2009 12:13 AM
07-08-2009 12:13 AM
Re: Harddisk status
No, nothing have been added
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-08-2009 12:22 AM
07-08-2009 12:22 AM
Re: Harddisk status
"Disk at hardware path 0/1/1/0.1.0 : Media failure"
please observe the eventlog.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-08-2009 12:25 AM
07-08-2009 12:25 AM
Re: Harddisk status
see this error at your output
Disk at hardware path 0/1/1/0.1.0 : I/O request failed.
Disk at hardware path 0/1/1/0.1.0 : Media failure
I think there is a problem with disk
did you check with this things
1.ioscan
2.diskinfo
3.dd
Post output or this command
suppose your disk is /dev/dsk/c1t3d0
#ioscan -fnC disk
#diskinfo /dev/rdsk/c1t3d0
#dd if=/dev/rdsk/c1t3d0 of=/dev/null bs=1024k
Suraj
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-08-2009 01:05 AM
07-08-2009 01:05 AM
Re: Harddisk status
output:
# 64+0 records in
64+0 records out
------------------------------------
i have this in the syslog.log
Jun 26 20:29:25 unixdb vmunix: LVM: VG 64 0x000000: PVLink 31 0x021000 Failed! The PV is not accessible.
Jun 26 18:23:24 unixdb vmunix: LVM: VG 64 0x000000: PVLink 31 0x021000 Recovered.
------------------------------------
how to check for stale extends?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-08-2009 02:09 AM
07-08-2009 02:09 AM
Re: Harddisk status
lvdisplay -v
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-08-2009 02:30 AM
07-08-2009 02:30 AM
Re: Harddisk status
#ioscan -fnC disk
and see the status . Please avoid the switch "u" and see the output.
Regards,
sooraj U
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-08-2009 03:48 AM
07-08-2009 03:48 AM
Re: Harddisk status
disk 1 0/1/1/0.0.0 sdisk CLAIMED DEVICE HP 146 GST3146807L
C
/dev/dsk/c2t0d0 /dev/rdsk/c2t0d0
disk 2 0/1/1/0.1.0 sdisk CLAIMED DEVICE HP 146 GST3146807L
C
/dev/dsk/c2t1d0 /dev/rdsk/c2t1d0
disk 3 0/1/1/1.2.0 sdisk CLAIMED DEVICE HP 146 GST3146807L
C
/dev/dsk/c3t2d0 /dev/rdsk/c3t2d0
-- XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Also, there are no stale extends
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-09-2009 12:24 AM
07-09-2009 12:24 AM
Re: Harddisk status
Please try running the information tool from cstm/xstm/mstm
try the below sequence:
cstm>sel dev
cstm> info
cstm> ial
or try
ioscan -funC disk
else
diskinfo
Thanks
Shivaprasad
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2019 Hewlett Packard Enterprise Development LP