- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- On PowerFail how do calculate PV 13 in VG 9?
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
02-03-2005 03:49 AM
02-03-2005 03:49 AM
.... Restored PV 13 to VG 9.
.... Recovered Path (device 0x1f360700) to PV 13 in VG 9.
a. 0x1f360700 translates to c54t0d7
1f is 31 is the major number of the device
360700 is the minor number of the device file
# ll -R /dev/ | grep 31 | grep 360700
brw-r----- 1 bin sys 31 0x360700 May 19 2002 c54t0d7
So, its /dev/dsk/c54t0d7.
b. What VG is it in?:
VG 9 means the VG with minor number 09:
# ll /dev/vg*/group | grep 09
crw-r--r-- 1 root sys 64 0x090000 May 19 2002 /dev/vg50/group
c. What PV is it in the VG?:
Is it the 13th PV?
Look at this:
# vgdisplay -v vg50 | grep dsk | more
PV Name /dev/dsk/c54t0d4
PV Name /dev/dsk/c76t8d4 Alternate Link
PV Name /dev/dsk/c54t0d5
PV Name /dev/dsk/c76t8d5 Alternate Link
PV Name /dev/dsk/c54t0d6
PV Name /dev/dsk/c76t8d6 Alternate Link
==> PV Name /dev/dsk/c54t0d7
PV Name /dev/dsk/c76t8d7 Alternate Link
PV Name /dev/dsk/c54t8d4
It's the 7th one listed in the vgdisplay.
What does the "13" mean?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2005 04:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2005 05:56 AM
02-03-2005 05:56 AM
Re: On PowerFail how do calculate PV 13 in VG 9?
The VGDA or VGRA or one of those guys begins at byte 8200. The VGID is stored around 8216, something like that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2005 05:17 PM
02-03-2005 05:17 PM
Re: On PowerFail how do calculate PV 13 in VG 9?
Firstly it means there was some kind of communication outage on that specific path, and it is restored now and can talk to the disk via the primary path.
a. The other command you got from the first reply is a good way to verify your translation.
b.If you look at the message part saying VG 9. The 9 should(in theory) match the minur number of the vg's group file. So to get the vg it belongs to ll/dev/*/group should point you in the right direction.
c. Yes its the 13th one but not strait numericaly since the alternate paths does have an influence in this count. It is on the 13th ontry in the tables of the vg.
HTH
Gerhard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2005 01:24 AM
02-04-2005 01:24 AM
Re: On PowerFail how do calculate PV 13 in VG 9?
Where do I read the table in which the disk is the 13th entry? If you look at the vgdisplay above my disk, counting links, is the 7th disk in the VG, not the 13th.
..Stuart