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
05-17-2006 04:22 AM
05-17-2006 04:22 AM
PV link
I have An rp4440 with 11.23 OS installed, eva 4000 and 2 san switches. I present a disk from eva to the rp4440 and I can show this disk through 4 different paths with ioscan (2 paths for each HBA). I didn't have secure path so I use pv link. My question : Can I have 1 primary and 3 alternate paths ? If yes, how can I do this ?
Thx in advance,
Sofiane.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2006 04:33 AM
05-17-2006 04:33 AM
Re: PV link
http://docs.hp.com/en/B2355-90672/ch03s11.html
http://docs.hp.com/en/B2355-90672/index.html
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
05-17-2006 04:37 AM
05-17-2006 04:37 AM
Re: PV link
You can do this using the vgextend command.
e.g. If you have created /dev/vgxx with a disk /dev/c0t6d0 and want to configure the alternate links -
vgextend /dev/vgxx /dev/dsk/c1t6d0 /dev/c2t6d0 /dev/c3t6d0
The disks mentioned are the device names for the alternate paths
LVM automatically treats them as alternate links as it knows that they are the same disk device with different paths.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2006 04:39 AM
05-17-2006 04:39 AM
Re: PV link
You may have up to eight (8) pathes to a physical disk with LVM.
To add alternate (pvlinks) simply:
# vgextend /dev/vgNN /dev/dsk/cXtYdZ
The first path to a physical disk is the primary and others are alternate or secondary ones available for fail-over. To exchange an alternate link to a primary one, 'vgreduce' the primary link and then 'vgextend' it back into the volume group.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2006 07:12 PM
05-17-2006 07:12 PM
Re: PV link
Sample "vgextend",
# vgdisplay vgsample
...
--- Physical volumes ---
PV Name /dev/dsk/c25t0d1
PV Status available
Total PE 2156
Free PE 7
Autoswitch On
#vgextend vgsample/dev/dsk/c26t0d1
Volume group "vgsample" has been successfully extended.
Volume Group configuration for /dev/vgsample has been saved in /etc/lvmconf/vgsample.conf
# vgdisplay vgsample
--- Physical volumes ---
PV Name /dev/dsk/c25t0d1
PV Name /dev/dsk/c26t0d1 Alternate Link
PV Status available
Total PE 2156
Free PE 7
Autoswitch On
Add all alternates disks,
# vgextend /dev/vgsample /dev/dsk/cxtydz /dev/dk/... ...
rgs,
ran
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 12:12 AM
05-18-2006 12:12 AM
Re: PV link
you can make one of the alternates become the primary for that disk using the pvchange command without taking the vg down
pvchange -s -A y /dev/dsk/cxxtydn the disk in the command becomes the primary link and the others revert to being alternate links .
regards
Mike.