- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- secure path and pv links confusion
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
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
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-24-2009 06:28 AM
тАО02-24-2009 06:28 AM
pvcreate /dev/dsk/c4t0d1 ?
or
pvcreate /hpap/dsk/hpap0 ?
Which one is a better approach from the applications (oracle db2) point of view ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2009 06:40 AM
тАО02-24-2009 06:40 AM
Re: secure path and pv links confusion
I heard that in 11i v3(where legacy device is supported) supports load balancing through alternete links by default. We don't need to configure what we use to do it 11i v1 and V2.
Basically, Alternate PV links are meant to high availablity. If primary link fails, will switch over to alternate links if we have configured. We can achieve some kind of load balancing by routing some disk's to primary links and some disk's to alternate links by changing the order in vg configuration.
Secure path is dedicated load balancing software which will route the I/O's through all the routes to achieve high performance.
Hope this helps.
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2009 06:52 AM
тАО02-24-2009 06:52 AM
Re: secure path and pv links confusion
Looking at what you've posted I'm assuming this is Secure Path for Active/Active disk arrays.
For LVM you need to use the devices in /dev/dsk - LVM won't like using the virtual devices. Choose either path to the disk, it won't matter as Secure Path will intercept the IO and use whichever load balancing algorithm you've chosen to send IO down the relevant path.
So you can choose just to put one path's device files in the volume group, or put both in. Generally I put both in as it reminds me that thoose PVs are in that G, but you don't have to.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2009 08:08 AM
тАО02-24-2009 08:08 AM
Re: secure path and pv links confusion
http://h20000.www2.hp.com/bc/docs/support/SupportManual/c00248499/c00248499.pdf
and locate
Figure 2 Driver model structure
for basic understanding.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-25-2009 03:37 AM
тАО02-25-2009 03:37 AM
Re: secure path and pv links confusion
If your are creating a VG , you have to use both primary and alternate paths.Because if one path fails , lvm will use the other path.
Secure path will do load balancing between these paths as per the configured load balancong policy.
For v3 systems secure path is not reqd.
Regards
Sani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-25-2009 09:01 AM
тАО02-25-2009 09:01 AM
SolutionSecurepath provides with both the Alternate Linking as well as the Load Balancing.
So this depends if you are using RAW Space for the Disks to be used with Oracle,
you can create a VG using the Disk files and create the LVs and use that for the RAW data Storage, The same if you are using the The LVs on such VG for keeping data on the Filesystems.
Well using the Device Files /hpap/dsk/hpap0 instead of the legacy /dev/dsk/cXtYdZ will help you identify the disks properly (new device files to use that only i think so) and you can create VG also using those dev files that is /hpap/dsk/hpap0, but think what shall happen if sometimes you plan to remove the HPSP product, You will need to reimport the VGs snd you shall always have to preseve the MAP files of the VG which will be having a VGID of that VG.
Also whenever you import the VG using these map files that shall have the Device Files of the /dev/dsk/cXtYdZ style you shall have to again add the paths /hpap/dsk/hpap0 to the VG.
so a good approcah shall be like
1)keep using the legacy DSF /dev/dsk/cXtYdZ format for the Paths in the VG for a Disk.(whether you use LVs with the Filesystenms or As rar LVs for Data storage).
2)If you are not using the VGs but the whole disk Dev files for the Raw Data Storage for the Database, then better you can use the /hpap/dsk/hpap0 etc.
3)In both the case do not forget to define a load-balancing policy for the Disk that you might be using, using the invocation of the command #autopath set lb_policy
or #spmgr commands
regards
sujit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-25-2009 07:53 PM
тАО02-25-2009 07:53 PM
Re: secure path and pv links confusion
Thank you all.