<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: LVM Recovery - HPUX 10.x - 11.x migration in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702724#M58360</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have to agree with Chan???s reply.  I have also done this using vgexport and vgimport and works very well.  One additional thing I do all the time is copy my /etc/passwd. Group and hosts files so I don???t have to create the entire user manually.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Mike&lt;BR /&gt;</description>
    <pubDate>Fri, 12 Apr 2002 19:55:25 GMT</pubDate>
    <dc:creator>Mike_305</dc:creator>
    <dc:date>2002-04-12T19:55:25Z</dc:date>
    <item>
      <title>LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702718#M58354</link>
      <description>Hi there,&lt;BR /&gt;&lt;BR /&gt;We have a K570 running HPUX 10.20, and are considering a cold install to HPUX 11.x.  Our primary data resides on a AutoRAID configuraiton.&lt;BR /&gt;&lt;BR /&gt;Does anybody know if it is possible to recover a 10.20 AutoRAID volume group configuration using vgcfgbackup/vgcfgrestore or if there are specific AutoRAID utilities to do this.&lt;BR /&gt;&lt;BR /&gt;Can it be done at all?&lt;BR /&gt;&lt;BR /&gt;Your assistance is much appreciated.  Thanks a lot - Dave</description>
      <pubDate>Fri, 12 Apr 2002 14:37:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702718#M58354</guid>
      <dc:creator>Dave van Nierop</dc:creator>
      <dc:date>2002-04-12T14:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702719#M58355</link>
      <description>Hi Dave:&lt;BR /&gt;&lt;BR /&gt;You merely need to 'vgexport' and subsequently 'vgimport' your non-vg00 volume groups.  To make things easy, use the '-m' and '-s' options.  Have a look at the man pages for both commands.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 12 Apr 2002 14:40:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702719#M58355</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-04-12T14:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702720#M58356</link>
      <description>You should be able to just export your map file and reimport them on the 11.x server once you switch the cables.&lt;BR /&gt;&lt;BR /&gt;lookup vgexport/vgimport</description>
      <pubDate>Fri, 12 Apr 2002 14:41:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702720#M58356</guid>
      <dc:creator>hpuxrox</dc:creator>
      <dc:date>2002-04-12T14:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702721#M58357</link>
      <description>This recipe works for me all the time ..&lt;BR /&gt;&lt;BR /&gt;Example you want to move vg02.&lt;BR /&gt;1) Umount all filesystem associate with vg02.&lt;BR /&gt;&lt;BR /&gt;2) Deactivate vg02&lt;BR /&gt;&lt;BR /&gt;   # vgchange -a n /dev/v02&lt;BR /&gt;&lt;BR /&gt;3) Remove the VG entry from /etc/lvmtab &amp;amp; the associated device files from the system.&lt;BR /&gt;&lt;BR /&gt;   # vgexport -m /tmp/mapfile /dev/vg02&lt;BR /&gt;&lt;BR /&gt;   Make sure you transfer a copy of /tmp/mapfile to some other server first, we'll need that file later.&lt;BR /&gt;&lt;BR /&gt;4) Shutdown the systems (or move hardware to a new path if you want to). Power up system.&lt;BR /&gt;&lt;BR /&gt;5) Recreate the VG (you don't have to call it vg02, it can be vg08, etc)&lt;BR /&gt;&lt;BR /&gt;   # mkdir /dev/vg02&lt;BR /&gt;   # mknod /dev/vg02/group c 64 0x0X0000&lt;BR /&gt;&lt;BR /&gt;   Note: The minor number (0x0X0000) must be unique for each volume group.  Substitute X for a number not in use on the system. Use: ll /dev/*/group to see existing group files on the system. (Ex: # mknod /dev/vg02/group c 64 0x020000)&lt;BR /&gt;&lt;BR /&gt;6) Import the VG info for all disks that are associated with it as follows:&lt;BR /&gt;&lt;BR /&gt;   # vgimport -m /tmp/mapfile /dev/vg02 /dev/dsk/pv_name1 /dev/dsk/pv_name2 ......&lt;BR /&gt;&lt;BR /&gt;   Note: The "pv_name" is a list each of the block device(s) corresponding  to the new hardware path(s). The new device files should have been created during system start up. Use: ioscan -fn to get the new device file names if needed.&lt;BR /&gt;&lt;BR /&gt;7) Activate the VG.&lt;BR /&gt;&lt;BR /&gt;   # vgchange -a y /dev/vg02&lt;BR /&gt;&lt;BR /&gt;8) Backup the VG configuration.&lt;BR /&gt;&lt;BR /&gt;   # vgcfgbackup /dev/vg02&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Apr 2002 14:44:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702721#M58357</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-04-12T14:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702722#M58358</link>
      <description>Hi Dave:&lt;BR /&gt;&lt;BR /&gt;vgcfgbackup/vgcfgrestore is best when you need to re-create the VG information on a new/replaced hard disk/LUN. While doing a cold install you are not going to write anything to the AUTORAID array disks/LUN, which have your data. The installation will be on the root hard disk which resides ( normally ) in the server. &lt;BR /&gt;&lt;BR /&gt;You can just 'vgexport' the VGs except /dev/vg00 with -m and -s options before the install. After installation, import it back to the new system with 'vgexport' using -m and -s options.&lt;BR /&gt;&lt;BR /&gt;There are lot of threads in this forum about this topic and you can easily search and browse it. Make 2 ignite recovery tapes and full system backups before doing the install.&lt;BR /&gt;&lt;BR /&gt;Good luck !&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju</description>
      <pubDate>Fri, 12 Apr 2002 14:52:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702722#M58358</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-04-12T14:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702723#M58359</link>
      <description>oops...&lt;BR /&gt;&lt;BR /&gt;the import command is - vgimport&lt;BR /&gt;&lt;BR /&gt;typos =))&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju</description>
      <pubDate>Fri, 12 Apr 2002 14:55:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702723#M58359</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-04-12T14:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702724#M58360</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have to agree with Chan???s reply.  I have also done this using vgexport and vgimport and works very well.  One additional thing I do all the time is copy my /etc/passwd. Group and hosts files so I don???t have to create the entire user manually.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Mike&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Apr 2002 19:55:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702724#M58360</guid>
      <dc:creator>Mike_305</dc:creator>
      <dc:date>2002-04-12T19:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702725#M58361</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;One thing I forgot to put is use the syntax for vgexport.&lt;BR /&gt;&lt;BR /&gt;vgexport -p -v -s -m /tmp/vg01.map /dev/vg01&lt;BR /&gt;&lt;BR /&gt;If you use this then you don't have to worry about specifying which disk.  It keeps track of the volume group information using vgid from Disk Array and after cold install do vgimport.&lt;BR /&gt;&lt;BR /&gt;THX - Mike&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Apr 2002 20:05:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702725#M58361</guid>
      <dc:creator>Mike_305</dc:creator>
      <dc:date>2002-04-12T20:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702726#M58362</link>
      <description>Hi Dave,&lt;BR /&gt;&lt;BR /&gt;You should save a copy of /etc/fstab so you'll be able to easily modify it after your cold install.&lt;BR /&gt;&lt;BR /&gt;Be sure you have a couple of good Ignite backups in case you have to revert back to 10.20.  You'll probably find you want to compare some config files or perhaps even restore some from the backups after you install 11.x.&lt;BR /&gt;&lt;BR /&gt;vgexport's and vgimport's -m and -s options make the process a piece of cake.  Just don't install anything on any of the disks used for vg02.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Fri, 12 Apr 2002 20:08:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702726#M58362</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-04-12T20:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702727#M58363</link>
      <description>I see I only referred to vg02.  Obviously all this refers to whatever VGs you have.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Fri, 12 Apr 2002 20:11:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702727#M58363</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-04-12T20:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702728#M58364</link>
      <description>While the -s vgexport/vmimport makes things easy; the downside is that all of your 12H LUN's primary paths will be through Controller X and Y will only be used as alternate for all LUN's. If you want your 12H to operate more efficiently and utilize both external SCSI paths, you will be better advised to do your vgimport and specify the SCSI paths explicitly. The order in which you list the pv_paths determines which is the primary path and which is the secondary.&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Apr 2002 20:15:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702728#M58364</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-04-12T20:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702729#M58365</link>
      <description>Very good point Clay.  If you are using PV links, "vgimport -s" doesn't care what path was primary.  The first path found to a lun will be the primary path.&lt;BR /&gt;&lt;BR /&gt;It may be a good idea to save "vgdisplay -v" output for the VGs you plan to import.&lt;BR /&gt;&lt;BR /&gt;If by chance your primary and alternate paths are reversed you can use "pvchange -s /dev/dsk/c#t#d#" to make the primary path the one you want.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Sat, 13 Apr 2002 00:19:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702729#M58365</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-04-13T00:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: LVM Recovery - HPUX 10.x - 11.x migration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702730#M58366</link>
      <description>Even though it's a month later, I need to correct my last reply for future reference.&lt;BR /&gt;&lt;BR /&gt;"pvchange -s" will change which path the disk is accessed by.  However, this is only temporary.  Once the VG is de-activated and re-activated, it reverts to the original paths.&lt;BR /&gt;&lt;BR /&gt;To permanently switch the paths, vgreduce the primary path from the VG then vgextend it back in.&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;/dev/dsk/c4t5d1 is the primary path / link&lt;BR /&gt;/dev/dsk/c3t5d1 is the alternate path / link&lt;BR /&gt;&lt;BR /&gt;# vgreduce vgname /dev/dsk/c4t5d1&lt;BR /&gt;# vgextend vgname /dev/dsk/c4t5d1&lt;BR /&gt;&lt;BR /&gt;c3t5d1 is now the primary and c4t5d1 is the alternate.&lt;BR /&gt;&lt;BR /&gt;I apologize for providing mis-leading "dis-information".&lt;BR /&gt;&lt;BR /&gt;N/A please.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Wed, 15 May 2002 12:55:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-recovery-hpux-10-x-11-x-migration/m-p/2702730#M58366</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-05-15T12:55:26Z</dc:date>
    </item>
  </channel>
</rss>

