- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: EMC DRIVE
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
06-18-2003 07:49 AM
06-18-2003 07:49 AM
vmunix: LVM: vg[0]: pvnum=1 (dev_t=0x1f015000) is POWERFAILED
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 07:52 AM
06-18-2003 07:52 AM
SolutionLook at the device numbers, e.g. 0x1f031100
The first two hex digits (1f) refer is the major device number. 1f = 31 (dec).
Do as lsdev and look for the matching driver. You will find that block major device 31 is "sdisk" - SCSI disk.
The next two hex digits (03) refer to the bus instance number. The next hex digit (1) is the SCSI ID and the next hex digit (1) is the LUN.
The following 2 hex digits are driver specific.
1f031100 decodes to /dev/dsk/c3t1d1.
Do an ioscan -fn and find the host bus adapter that corresponds to c3.
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 07:55 AM
06-18-2003 07:55 AM
Re: EMC DRIVE
value. For example:
A dev_t value of 0x1c045000 is associated with c4t5d0
04 = instance number
5 = SCSI address number
0 = LUN number
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 07:55 AM
06-18-2003 07:55 AM
Re: EMC DRIVE
vgdisplay -v /dev/vg00 |more
Look for the first PV or notice which disk it howls about.
More professional way,...
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x244768c57f64d4118fee0090279cd0f9,00.html
(Down the bottom of the posting, the answer by Ramesh is good)
Share and Enjoy! ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 07:56 AM
06-18-2003 07:56 AM
Re: EMC DRIVE
Another way to find out is:
ll /dev/dsk
and look for the number 0x1f0150000
Regards,
Dario
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 08:04 AM
06-18-2003 08:04 AM
Re: EMC DRIVE
1. run xstm (GUI)
2. go to TOOLS -> UTILITY -> LOGTOOL
3. select raw log
4. go to bottom of log, go backwards and check all hardware errors for time when you got the error.
Often you may see a single error for one device first and then errors following for other devices. Usually its the first, or the most common (ie. the largest) number of errors against a device which is the culprit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 08:29 AM
06-18-2003 08:29 AM
Re: EMC DRIVE
I'd check powerpath (thats how EMC call it?:))
and if one link has failed but another (or more) are ok,would go for cables/terminations.
Zeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 11:02 AM
06-18-2003 11:02 AM
Re: EMC DRIVE
Now my next thing would be to ask what is the timeout value set for. My guess is that it is still at the default value, so may I suggest that you may need to simply increase it from the default value (what is that 30seconds or 60 seconds)....anyway I set mine to 180
pvchange -t 180 /dev/dsk/c_t_d_
Now to change all your disks to a timeout of 180 you could:
for d in `ls /dev/dsk/*`
do
pvchange -t 180 $d
done
Rgrds,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 01:09 PM
06-18-2003 01:09 PM
Re: EMC DRIVE
#!/bin/ksh
Z=$1
I=`echo $Z|tr '[a-z]' '[A-Z]'`
LENGTH_I=`echo $I|wc -m`
if test "$LENGTH_I" -eq 9
then
A=`echo $I|sed s/..//`
B=`echo $A|sed s/....$//`
C=`echo "ibase=16;$B"|bc`
R=`echo $I|sed s/....//`
S=`echo $R|sed s/...$//`
T=`echo "ibase=16;$S"|bc`
F=`echo $I|sed s/.....//`
G=`echo $F|sed s/..$//`
D=`echo "ibase=16;$G"|bc`
echo "This translates to c"$C"t"$T"d"$D" "
echo
else
echo "The input string must be exactly 8 bytes. "
fi