- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- LVM config migration to 11i v3
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
01-11-2010 06:44 AM
01-11-2010 06:44 AM
What should i do to save lvm configuration and data on my existing logical volumes during updating hpux from v2 to v3 version ?
Thanks !
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2010 06:48 AM
01-11-2010 06:48 AM
Re: LVM config migration to 11i v3
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2010 06:57 AM
01-11-2010 06:57 AM
Re: LVM config migration to 11i v3
Use vgexport and import, Please dont forget to use the option,
# vgimport â s â v â m /etc/lvmconf/vg01.map vg01
Regards,
Sooraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2010 08:14 PM
01-11-2010 08:14 PM
Re: LVM config migration to 11i v3
while migrating VGs from 11iv2 to 11iv3, make sure that you have the latest LVM pathces also and have a look at (only) few limitaions of 11iv2 Vgs being migrated to 11iv3.
refer to compatibilty notes on page 14 of
http://h20000.www2.hp.com/bc/docs/support/SupportManual/c01919369/c01919369.pdf (BSC link updated by admin)
also it is to be understood that the New generation Mass storage stack on 11iv3 has inbuilt Dynamic multipathing in it.
Also that though the legacy device files are well supported on 11iv3, you can choose to have the persistent DSFs that is agile view reflecting in your VGs.
so once you have imported those VGs from the 11iv2 system to the 11iv3 system, once again re-export and import that VG in the following way.
after you have imported the vgs to the 11iv3 system, say vg01
then re-export
vgexport -p -v -s -N -m /tmp/vg01.map /dev/vg01
vgexport /dev/vg01
mkdir /dev/vg01
mknod /dev/vg01/group c 64 0x0Y0000
make sure that 0x0y0000 is unique on the system.
vgimport -v -s -N -m /tmp/vg01.map /dev/vg01
regards
sujit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2010 10:40 PM
01-11-2010 10:40 PM
Re: LVM config migration to 11i v3
Should i use -f option to create outfile with current set of pv_paths? Is this usefull?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2010 11:32 PM
01-11-2010 11:32 PM
Re: LVM config migration to 11i v3
If you use vxexport with the -s option there is no need to use the -f option, because you are addinf the VGID to the vg map file, and it will identify the disks that belong to that VG automatically.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2010 12:24 AM
01-12-2010 12:24 AM
Solution-f and -s options are mutually exclusive for the commands vgimport and vgexport.
vgexport -p -v -s -N -m /tmp/vg01.map /dev/vg01
this shall create the map file with the VGID of the VG in this.
after this
vgimport -v -s -N -m /tmp/vg01.map /dev/vg01
this shall scan all the disks on the system to match the VGID as in the specified map file and shall import those disks in the specified VG.
-f
when this file.out is used with a vgimport command this shall scan the disks and those matching the device files in file.out shall be imported in the VG.
note that the Device Files as in 11iv2 can be different to that while the OS is 11iv3, in that case -f option can be erroneous if that can not match the device files in the target OS.
so it is better to use the -s option.
regards