<?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: Relocating disk array to a different server in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696262#M644785</link>
    <description>This is the same as any LVM:&lt;BR /&gt;&lt;BR /&gt;I'll assume this is vg06&lt;BR /&gt;&lt;BR /&gt;---- On old box&lt;BR /&gt;0) Backup - to be safe&lt;BR /&gt;1) unmount filesystems&lt;BR /&gt;2) vgexport -s -m /tmp/vg06.map -p /dev/vg06&lt;BR /&gt;   (This does not harm any data)&lt;BR /&gt;3) vgchange -a n /dev/vg06&lt;BR /&gt;Copy the map file /tmp/vg06.map to your new box.&lt;BR /&gt;&lt;BR /&gt;------ On new box&lt;BR /&gt;&lt;BR /&gt;4) cd /dev&lt;BR /&gt;   mkdir vg06&lt;BR /&gt;   cd vg06&lt;BR /&gt;   mknod group c 64 0x060000&lt;BR /&gt;   chmod 644 group&lt;BR /&gt;&lt;BR /&gt;5) vgimport -v -s -m /tmp/vg06.map /dev/vg06&lt;BR /&gt;6) vgchange -a y /dev/vg06&lt;BR /&gt;7) create mountpoints, /etc/fstab entries for your filesystems, and mount the filesystems.&lt;BR /&gt;&lt;BR /&gt;Man vgexport, vgimport for details.&lt;BR /&gt;&lt;BR /&gt;NOTE: vgimport -s will only use the primary path; if you want to split your paths for LUN's across both controllers, you will need to specify the disk devices.&lt;BR /&gt;&lt;BR /&gt;Man vgexport, vgimport for details.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 03 Apr 2002 17:05:05 GMT</pubDate>
    <dc:creator>A. Clay Stephenson</dc:creator>
    <dc:date>2002-04-03T17:05:05Z</dc:date>
    <item>
      <title>Relocating disk array to a different server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696258#M644781</link>
      <description>I am in the process migrating to a new server. The old one has an disk array (12h) that need to be moved over to the new one.  &lt;BR /&gt;&lt;BR /&gt;Is there a process (or documentation) for this procedure?    I would like to avoid the "backup, relocate, redo luns, restore" method if I can help it.&lt;BR /&gt;&lt;BR /&gt;One other note, I'm going from 10.20 to 11.00 in this migration.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;Masaki</description>
      <pubDate>Wed, 03 Apr 2002 16:44:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696258#M644781</guid>
      <dc:creator>Masaki Birchmier</dc:creator>
      <dc:date>2002-04-03T16:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Relocating disk array to a different server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696259#M644782</link>
      <description>If you're physically moving the disk array to the new system a simple vgexport / vgimport procedure should do it.  Have a read of the man pages of these commands for details.&lt;BR /&gt;&lt;BR /&gt;Of course, I'd always recommend a backup just in case.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Steve</description>
      <pubDate>Wed, 03 Apr 2002 16:52:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696259#M644782</guid>
      <dc:creator>Steven Gillard_2</dc:creator>
      <dc:date>2002-04-03T16:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Relocating disk array to a different server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696260#M644783</link>
      <description>Hi Masaki,&lt;BR /&gt;&lt;BR /&gt;It is always advisable to have a backup to be on safer side. You don't need to use it unless required. Regarding the vgexport/vgimport process, identify the volume groups residing on the 12h and do the following for each volume group vgxx.&lt;BR /&gt;&lt;BR /&gt;#vgexport -v -s -m /tmp/vgxx.map vgxx&lt;BR /&gt;&lt;BR /&gt;Copy the map files to the new system into /tmp directory. Also copy /etc/fstab to the new system into /tmp. Connect 12h to the new system.&lt;BR /&gt;&lt;BR /&gt;#ioscan -f&lt;BR /&gt;#insf&lt;BR /&gt;#mkdir /dev/vgxx&lt;BR /&gt;#mknod /dev/vgxx/group c 64 0x0?0000 &lt;BR /&gt;(? should be a unique number)&lt;BR /&gt;#vgimport -v -s -m /tmp/vgxx.map vgxx&lt;BR /&gt;#vgchange -a y vgxx&lt;BR /&gt;&lt;BR /&gt;Create mount points for these logical volumes. You can get them by doing a grep vgxx /tmp/fstab&lt;BR /&gt;&lt;BR /&gt;#mkdir /filesystemxx&lt;BR /&gt;&lt;BR /&gt;Copy the entries related to vgxx from /tmp/fstab to /etc/fstab&lt;BR /&gt;&lt;BR /&gt;#mount -a&lt;BR /&gt;&lt;BR /&gt;This should mount all the filesystems.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;</description>
      <pubDate>Wed, 03 Apr 2002 16:58:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696260#M644783</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2002-04-03T16:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Relocating disk array to a different server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696261#M644784</link>
      <description>Hi Masaki&lt;BR /&gt;&lt;BR /&gt;This involves the following :&lt;BR /&gt;&lt;BR /&gt;1. vgexport the volume groups on the present server. &lt;BR /&gt;2.Disconnect the array .&lt;BR /&gt;3.Connec tot the enw server , ensure that the Terrminator is in the correct place and the pins of the cable are not bent.&lt;BR /&gt;4.Boot the server it should sense the new disk device.&lt;BR /&gt;5.Do a vgimport .&lt;BR /&gt;6. Mount the Filesystems .&lt;BR /&gt;&lt;BR /&gt;You are good to go.&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava</description>
      <pubDate>Wed, 03 Apr 2002 17:01:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696261#M644784</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-04-03T17:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Relocating disk array to a different server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696262#M644785</link>
      <description>This is the same as any LVM:&lt;BR /&gt;&lt;BR /&gt;I'll assume this is vg06&lt;BR /&gt;&lt;BR /&gt;---- On old box&lt;BR /&gt;0) Backup - to be safe&lt;BR /&gt;1) unmount filesystems&lt;BR /&gt;2) vgexport -s -m /tmp/vg06.map -p /dev/vg06&lt;BR /&gt;   (This does not harm any data)&lt;BR /&gt;3) vgchange -a n /dev/vg06&lt;BR /&gt;Copy the map file /tmp/vg06.map to your new box.&lt;BR /&gt;&lt;BR /&gt;------ On new box&lt;BR /&gt;&lt;BR /&gt;4) cd /dev&lt;BR /&gt;   mkdir vg06&lt;BR /&gt;   cd vg06&lt;BR /&gt;   mknod group c 64 0x060000&lt;BR /&gt;   chmod 644 group&lt;BR /&gt;&lt;BR /&gt;5) vgimport -v -s -m /tmp/vg06.map /dev/vg06&lt;BR /&gt;6) vgchange -a y /dev/vg06&lt;BR /&gt;7) create mountpoints, /etc/fstab entries for your filesystems, and mount the filesystems.&lt;BR /&gt;&lt;BR /&gt;Man vgexport, vgimport for details.&lt;BR /&gt;&lt;BR /&gt;NOTE: vgimport -s will only use the primary path; if you want to split your paths for LUN's across both controllers, you will need to specify the disk devices.&lt;BR /&gt;&lt;BR /&gt;Man vgexport, vgimport for details.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 03 Apr 2002 17:05:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696262#M644785</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-04-03T17:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Relocating disk array to a different server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696263#M644786</link>
      <description>Have a look at this page&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90053/B2355-90053_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90053/00/00/32-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90053/00/00/32-toc.html&amp;amp;searchterms=a%7cdisk%7cmoving&amp;amp;queryid=20020403-090850" target="_blank"&gt;http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90053/B2355-90053_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90053/00/00/32-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90053/00/00/32-toc.html&amp;amp;searchterms=a%7cdisk%7cmoving&amp;amp;queryid=20020403-090850&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Basically you have to do vgexport and import with the map file.&lt;BR /&gt;&lt;BR /&gt;Sandip</description>
      <pubDate>Wed, 03 Apr 2002 17:05:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696263#M644786</guid>
      <dc:creator>Sandip Ghosh</dc:creator>
      <dc:date>2002-04-03T17:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Relocating disk array to a different server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696264#M644787</link>
      <description>Thanks everyone for the quick response. I'll give it a shot.&lt;BR /&gt;&lt;BR /&gt;Masaki</description>
      <pubDate>Wed, 03 Apr 2002 17:40:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/relocating-disk-array-to-a-different-server/m-p/2696264#M644787</guid>
      <dc:creator>Masaki Birchmier</dc:creator>
      <dc:date>2002-04-03T17:40:37Z</dc:date>
    </item>
  </channel>
</rss>

