- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vgextend with 11.31 native pathing ques..
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-08-2009 09:45 AM
06-08-2009 09:45 AM
I am using LVM to create the disks, but with the new version of HPUX should i vgextend the original disk to its companion disk down the other controller? is that needed? When i used Hitachi's HDLM, i had to. Just don't know how this works with HP's embedded multi path. please help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 09:57 AM
06-08-2009 09:57 AM
Re: vgextend with 11.31 native pathing ques..
Can I see some output:
ioscan -fnC disk
I would be consistent with my vgextend, and use the same controller for all.
I believe if there are two built in paths they will both work.
I would test with a cable unplug before going production.
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
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 10:02 AM
06-08-2009 10:02 AM
Re: vgextend with 11.31 native pathing ques..
/dev/dsk/c12t0d0 /dev/rdsk/c12t0d0
disk 29 0/0/14/1/0.182.0.0.0.0.1 sdisk CLAIMED DEVICE HITACHI OPEN-V
/dev/dsk/c12t0d1 /dev/rdsk/c12t0d1
disk 30 0/0/14/1/0.182.0.0.0.0.2 sdisk CLAIMED DEVICE HITACHI OPEN-V
/dev/dsk/c12t0d2 /dev/rdsk/c12t0d2
----------- other path
disk 4 1/0/6/1/0.110.0.1.0.0.0 sdisk CLAIMED DEVICE HITACHI OPEN-V
/dev/dsk/c10t0d0 /dev/rdsk/c10t0d0
disk 6 1/0/6/1/0.110.0.1.0.0.1 sdisk CLAIMED DEVICE HITACHI OPEN-V
/dev/dsk/c10t0d1 /dev/rdsk/c10t0d1
disk 7 1/0/6/1/0.110.0.1.0.0.2 sdisk CLAIMED DEVICE HITACHI OPEN-V
/dev/dsk/c10t0d2 /dev/rdsk/c10t0d2
i have LVM'd the disks using the c10t0d0-1-2
i am wondering if i have to vgextend to the 2nd path of c12t0d0-1-2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 10:21 AM
06-08-2009 10:21 AM
Re: vgextend with 11.31 native pathing ques..
Sounds like a problem that I've run into before, but it's specific to power path or whatever redundent pathing application Hitachi is using, and, pv links, the displaying of primary and alternate paths in vgdisplay.
So start with vgdisplay -v and verify alternate and primaries. Are they there? If not, then they also won't be in /etc/lvmtab, but verify with "...strings /etc/lvmtab...". Are they there?
Finally, you have to know ahead of time that you have primaries and alternates before you vgextend the alternates into the vg. The O/S is smart enough to know if the lun is already a part of a vg, the info is written on the lvm header which is created with the pvcreate commmand.
WARNING: Don't pvcreate -f and force a pvcreate. You shouldn't have to. Just beware that alternates already have data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 10:26 AM
06-08-2009 10:26 AM
Re: vgextend with 11.31 native pathing ques..
i just did
pvcreate -f /dev/rdsk/c10t0d0
mkdir /dev/vg10
mknod /dev/vg10/group c 64 0x0a0000
vgcreate vg10 /dev/dsk/c10t0d0
lvcreate -F 100000 -n lvol110 vg10
vgextend vg10 /dev/dsk/c12tod0 **********
newfs
mkdir /b10
vi etc/fstab
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 11:35 AM
06-08-2009 11:35 AM
Solution11iv3 native multipathing shall be working by default even if you use persistent DSFs or the legacy DSFs.
So you need not do a vgextend to the alternate paths.
It is there inbuilt, you need to disable this explicitly for the legacy DSF if you do not wish using this.
Also suggest you to have the latest patches for LVM and Latest QPK,HWEnable and Feature11 installed.
regards
sujit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2009 04:05 AM
06-09-2009 04:05 AM
Re: vgextend with 11.31 native pathing ques..
- Kevin