<?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: Activate LVM in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/activate-lvm/m-p/3769567#M615299</link>
    <description>Hi,&lt;BR /&gt;you must to create a mapfile from the node that already has the vg (node A):&lt;BR /&gt;#vgexport -p -s -m vgXX.map -v vgXX&lt;BR /&gt;now if you see the vgXX in the other node (node B) with: &lt;BR /&gt;#strings /etc/lvmtab&lt;BR /&gt;you must to export the vgXX from node B:&lt;BR /&gt;#vgexport vgXX&lt;BR /&gt;copy the mapfile from node A to node B and re-create the vg structure (on node B):&lt;BR /&gt;#mkdir /dev/vgXX&lt;BR /&gt;#mknode /dev/vgXX/group c 64 0x0y0000&lt;BR /&gt;where y is the same of node A&lt;BR /&gt;import the vg:&lt;BR /&gt;#vgimport -s -m vgXX.map -v vgXX&lt;BR /&gt;now the vg is ready for activation.&lt;BR /&gt;&lt;BR /&gt;Bye Rocco Foti</description>
    <pubDate>Thu, 13 Apr 2006 06:53:56 GMT</pubDate>
    <dc:creator>Rocco Foti</dc:creator>
    <dc:date>2006-04-13T06:53:56Z</dc:date>
    <item>
      <title>Activate LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/activate-lvm/m-p/3769563#M615295</link>
      <description>Hi there is a vg which has failed to import i keep getting "already exists in lvmtab" and also mknod fails can any please help also it is part of a cluster , i don't have much exp on this so would appreaciate some help on this</description>
      <pubDate>Mon, 10 Apr 2006 22:05:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/activate-lvm/m-p/3769563#M615295</guid>
      <dc:creator>vipi</dc:creator>
      <dc:date>2006-04-10T22:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Activate LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/activate-lvm/m-p/3769564#M615296</link>
      <description>Do a strings /etc/lvmtab; I think you will find an entry already there. Since you don't bother to give many details (like what was mknod's error message), it;s difficult to be very specific.</description>
      <pubDate>Mon, 10 Apr 2006 22:49:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/activate-lvm/m-p/3769564#M615296</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-10T22:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Activate LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/activate-lvm/m-p/3769565#M615297</link>
      <description>First, backup your mapfile.&lt;BR /&gt;# vgchange -a n vg@@&lt;BR /&gt;# vgexport -v -p -m /tmp/vg@@.map /dev/vg@@&lt;BR /&gt;# vgexport vg@@&lt;BR /&gt;&lt;BR /&gt;And make device file.&lt;BR /&gt;# mkdir /dev/vg@@&lt;BR /&gt;# mknod /dev/vg@@/group c 64 0x0@0000&lt;BR /&gt;&lt;BR /&gt;Import map file.&lt;BR /&gt;# vgimport -v -p -m /tmp/vg@@.map /dev/vg@@ /dev/dsk/c#t#d#&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 10 Apr 2006 22:58:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/activate-lvm/m-p/3769565#M615297</guid>
      <dc:creator>YoungHwan, Ko</dc:creator>
      <dc:date>2006-04-10T22:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: Activate LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/activate-lvm/m-p/3769566#M615298</link>
      <description>check in /dev and see if the vg is already listed if it is do a vgexport and start aover</description>
      <pubDate>Wed, 12 Apr 2006 10:21:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/activate-lvm/m-p/3769566#M615298</guid>
      <dc:creator>David Bellamy</dc:creator>
      <dc:date>2006-04-12T10:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: Activate LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/activate-lvm/m-p/3769567#M615299</link>
      <description>Hi,&lt;BR /&gt;you must to create a mapfile from the node that already has the vg (node A):&lt;BR /&gt;#vgexport -p -s -m vgXX.map -v vgXX&lt;BR /&gt;now if you see the vgXX in the other node (node B) with: &lt;BR /&gt;#strings /etc/lvmtab&lt;BR /&gt;you must to export the vgXX from node B:&lt;BR /&gt;#vgexport vgXX&lt;BR /&gt;copy the mapfile from node A to node B and re-create the vg structure (on node B):&lt;BR /&gt;#mkdir /dev/vgXX&lt;BR /&gt;#mknode /dev/vgXX/group c 64 0x0y0000&lt;BR /&gt;where y is the same of node A&lt;BR /&gt;import the vg:&lt;BR /&gt;#vgimport -s -m vgXX.map -v vgXX&lt;BR /&gt;now the vg is ready for activation.&lt;BR /&gt;&lt;BR /&gt;Bye Rocco Foti</description>
      <pubDate>Thu, 13 Apr 2006 06:53:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/activate-lvm/m-p/3769567#M615299</guid>
      <dc:creator>Rocco Foti</dc:creator>
      <dc:date>2006-04-13T06:53:56Z</dc:date>
    </item>
  </channel>
</rss>

