<?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: How to get disk-array working on a different server using LVM in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893985#M608312</link>
    <description>&lt;BR /&gt;You need to ensure your disks can be viewed on both nodes (use ioscan -fnkCdisk). To view VG on a passive node do this:&lt;BR /&gt;&lt;BR /&gt;Active node:&lt;BR /&gt;vgexport -p -v -s -m vgora.map /dev/vgora&lt;BR /&gt;(PLEASE USE ALWAYS PREVIEW MODE TO AVOID CONFIGURATION LOSS)&lt;BR /&gt;&lt;BR /&gt;Pasive node:&lt;BR /&gt;rcp active_node:vgora.map vgora.map&lt;BR /&gt;mkdir /dev/vgora&lt;BR /&gt;mknod /dev/vgora/group c 64 0x0?0000&lt;BR /&gt;(0x0?0000 where "?" must be a number between 0 and kernel parameter "maxvgs")&lt;BR /&gt;vgimport -v -s -m vgora.map /dev/vgora&lt;BR /&gt;vgchange -a r /dev/vgora&lt;BR /&gt;vgcfgbackup /dev/vgora&lt;BR /&gt;vgchange -a n /dev/vgora&lt;BR /&gt;&lt;BR /&gt;With this steps you have your VG configuration activated on both nodes, in case you need to start the VG on passive node do:&lt;BR /&gt;&lt;BR /&gt;Active node:&lt;BR /&gt;vgchange -a n /dev/vgora&lt;BR /&gt;&lt;BR /&gt;Passive node:&lt;BR /&gt;vgchange -a y /dev/vgora&lt;BR /&gt;&lt;BR /&gt;Please remember to create mount points and consider disable automatic VG activation en /etc/lvmrc.&lt;BR /&gt;&lt;BR /&gt;Best regards.</description>
    <pubDate>Tue, 14 Nov 2006 07:30:27 GMT</pubDate>
    <dc:creator>Carlos M.J.</dc:creator>
    <dc:date>2006-11-14T07:30:27Z</dc:date>
    <item>
      <title>How to get disk-array working on a different server using LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893983#M608310</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;we have a HP-UX PA-RISC 11.11 Oracle database production server (rp7405 with DS2100 Storage Extension and a Storage Works Virtual Array VA 7100 10x36 GB Fibre Channel). &lt;BR /&gt;Now management bought a second machine which has quite the same specification (but no storage extensions or array attached) to have a backup system in case the first one goes up in fire. The plan is to simply switch the storage array (where are all the database data) to the new machine, adjust IP-adresses, restart the databases and applications, and be online again in a short time.&lt;BR /&gt;&lt;BR /&gt;The second server is setup quite similar to the first one regarding root disks (mirrored), Oracle software and so on.&lt;BR /&gt;&lt;BR /&gt;As I am not experienced in manual LVM stuff (I love SAM :-))now the question is: What would be the detailed steps to get the array running on the second machine? We are using LVM and configuration information of the first machine is available (/etc/lvmconf) by using make_tape_recovery.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;BR /&gt;Yunwon&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Nov 2006 11:52:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893983#M608310</guid>
      <dc:creator>Yunwon</dc:creator>
      <dc:date>2006-11-07T11:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to get disk-array working on a different server using LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893984#M608311</link>
      <description>Do a vgexport (in preview mode: -p) of all the Volume Groups in the array.  Use the -s option and the -m option to create a map file.  Transfer the map file to the other server.  Also prepare the second server with the VG device files:&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vg??&lt;BR /&gt;mknod /dev/vg??/group c 64 0x??0000&lt;BR /&gt;&lt;BR /&gt;In case of the first server's failure, simply run vgimport:  vgimport -s -m /tmp/vg??.map /dev/vg??.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Tue, 07 Nov 2006 12:05:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893984#M608311</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-11-07T12:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to get disk-array working on a different server using LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893985#M608312</link>
      <description>&lt;BR /&gt;You need to ensure your disks can be viewed on both nodes (use ioscan -fnkCdisk). To view VG on a passive node do this:&lt;BR /&gt;&lt;BR /&gt;Active node:&lt;BR /&gt;vgexport -p -v -s -m vgora.map /dev/vgora&lt;BR /&gt;(PLEASE USE ALWAYS PREVIEW MODE TO AVOID CONFIGURATION LOSS)&lt;BR /&gt;&lt;BR /&gt;Pasive node:&lt;BR /&gt;rcp active_node:vgora.map vgora.map&lt;BR /&gt;mkdir /dev/vgora&lt;BR /&gt;mknod /dev/vgora/group c 64 0x0?0000&lt;BR /&gt;(0x0?0000 where "?" must be a number between 0 and kernel parameter "maxvgs")&lt;BR /&gt;vgimport -v -s -m vgora.map /dev/vgora&lt;BR /&gt;vgchange -a r /dev/vgora&lt;BR /&gt;vgcfgbackup /dev/vgora&lt;BR /&gt;vgchange -a n /dev/vgora&lt;BR /&gt;&lt;BR /&gt;With this steps you have your VG configuration activated on both nodes, in case you need to start the VG on passive node do:&lt;BR /&gt;&lt;BR /&gt;Active node:&lt;BR /&gt;vgchange -a n /dev/vgora&lt;BR /&gt;&lt;BR /&gt;Passive node:&lt;BR /&gt;vgchange -a y /dev/vgora&lt;BR /&gt;&lt;BR /&gt;Please remember to create mount points and consider disable automatic VG activation en /etc/lvmrc.&lt;BR /&gt;&lt;BR /&gt;Best regards.</description>
      <pubDate>Tue, 14 Nov 2006 07:30:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893985#M608312</guid>
      <dc:creator>Carlos M.J.</dc:creator>
      <dc:date>2006-11-14T07:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to get disk-array working on a different server using LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893986#M608313</link>
      <description>I am wondering how the second system associates the disk device files of the array with the volume group, as the mapfile does not contain this information.&lt;BR /&gt;&lt;BR /&gt;Maybe there is a misunderstanding: The disk array will NOT be connected to both machines at the same time.&lt;BR /&gt;Don't I have to use in this case: vgimport -v -m /tmp/vg??.map /dev/vg?? /dev/dsk/c8t0d0 ?&lt;BR /&gt;&lt;BR /&gt;Yunwon</description>
      <pubDate>Wed, 15 Nov 2006 11:56:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893986#M608313</guid>
      <dc:creator>Yunwon</dc:creator>
      <dc:date>2006-11-15T11:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to get disk-array working on a different server using LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893987#M608314</link>
      <description>&lt;BR /&gt;  ooops!&lt;BR /&gt;&lt;BR /&gt;  You need to connect your disk array to the other machine to vgimport it. So you need to stop primary machine, unplug you cable and connect to the second machine.&lt;BR /&gt;&lt;BR /&gt;  Of course, you can plug, ioscan, and vgimport it in case of failure, but it's advisable to test it before, so (if you can do it) stop it and test this maneuver, before it will be too late.&lt;BR /&gt;&lt;BR /&gt;  good luck!&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Nov 2006 03:37:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893987#M608314</guid>
      <dc:creator>Carlos M.J.</dc:creator>
      <dc:date>2006-11-16T03:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to get disk-array working on a different server using LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893988#M608315</link>
      <description>Your management has a point. As SA, you need create map files for those volume groups and transfer them to the other system whenever the volume groups are updated. You can survive.Cheers!</description>
      <pubDate>Tue, 21 Nov 2006 12:20:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-get-disk-array-working-on-a-different-server-using-lvm/m-p/3893988#M608315</guid>
      <dc:creator>John Guster</dc:creator>
      <dc:date>2006-11-21T12:20:51Z</dc:date>
    </item>
  </channel>
</rss>

