<?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: moving disk in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962357#M631844</link>
    <description>Regarding:  "...if the old disk from point to point topology is as /dev/dsk/c1t3d0, now it has changed to /dev/dsk/c3t3d0 because of changing the topology. will vgimport knows that these are the same physical devices and the only thing it changes is the h/w path?? ..."&lt;BR /&gt;&lt;BR /&gt;This is a very good question.&lt;BR /&gt;&lt;BR /&gt;Its my understanding that Arbitrated loop is a SAN topology.  Is this topology changing from the switch or the disk array?  If disk array are the luns being redefined?  If the luns aren't being redefined and its just a topology change, especially a topology change via the switch, then no.&lt;BR /&gt;&lt;BR /&gt;However you are indicating a change, from c1t3d0 to c3t3d0.  Is this speculation of fact?&lt;BR /&gt;&lt;BR /&gt;Need more information.  What's your disk array?  How are you changing your topology?  Is there a switch?</description>
    <pubDate>Tue, 29 Apr 2003 21:16:13 GMT</pubDate>
    <dc:creator>Michael Steele_2</dc:creator>
    <dc:date>2003-04-29T21:16:13Z</dc:date>
    <item>
      <title>moving disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962352#M631839</link>
      <description>moving from point to point topology to arbitarate loop, would vgscan update the lvmtab after running insf -e and ioscan for the new h/w path. Do I still need to make a mapfile for later vgimport.  I do not want to destroy the information or alter the information in any volume group...</description>
      <pubDate>Tue, 29 Apr 2003 20:22:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962352#M631839</guid>
      <dc:creator>hpuser_6</dc:creator>
      <dc:date>2003-04-29T20:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: moving disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962353#M631840</link>
      <description>I think to be on the safe side you would:&lt;BR /&gt;&lt;BR /&gt;vgexport -v -s -m /tmp/mapfile vgxx&lt;BR /&gt;&lt;BR /&gt;and then to import it:&lt;BR /&gt;&lt;BR /&gt;vgimport -m /tmp/mapfile -s vgname&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;vgimport -m /tmp/mapfile vgname /dev/dsk/c_t_d_&lt;BR /&gt;&lt;BR /&gt;The "s" option writes the vg serial number to the disk but be warned if you have a lot of disks it will look at everyone of them on the import. Since only one disk you may still want to export it with the s just in case but import it with the path name.</description>
      <pubDate>Tue, 29 Apr 2003 20:35:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962353#M631840</guid>
      <dc:creator>John Dvorchak</dc:creator>
      <dc:date>2003-04-29T20:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: moving disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962354#M631841</link>
      <description>Ok my fault I had a serious typo:&lt;BR /&gt;&lt;BR /&gt;vgexport -p -v -m /tmp/mapfile -s vgname&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;DONT FORGET THE -P OPTION.&lt;BR /&gt;&lt;BR /&gt;Sorry about that</description>
      <pubDate>Tue, 29 Apr 2003 20:36:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962354#M631841</guid>
      <dc:creator>John Dvorchak</dc:creator>
      <dc:date>2003-04-29T20:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: moving disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962355#M631842</link>
      <description>if the old disk from point to point topology is as /dev/dsk/c1t3d0, now it has changed to /dev/dsk/c3t3d0 because of changing the topology. will vgimport knows that these are the same physical devices and the only thing it changes is the h/w path??</description>
      <pubDate>Tue, 29 Apr 2003 20:43:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962355#M631842</guid>
      <dc:creator>hpuser_6</dc:creator>
      <dc:date>2003-04-29T20:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: moving disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962356#M631843</link>
      <description>Correct if you vgexport -p -m /tmp/mapfile then it will know on the import because you will use both the map file and the new hardware path. &lt;BR /&gt;&lt;BR /&gt;vgexport -v -p -s -m /tmp/mapfile vgxx&lt;BR /&gt;&lt;BR /&gt;Will create the mapfile with the lv info and serialize it.&lt;BR /&gt;&lt;BR /&gt;vgimport -m /tmp/mapfile vgyy /dev/dsk/c3t3d0&lt;BR /&gt;&lt;BR /&gt;now the vg name has to be different, cause if you just export the vg to erase it, it will also remove the lv info from the disk.&lt;BR /&gt;&lt;BR /&gt;I am assuming that this is on the same system and not moving to a different system.</description>
      <pubDate>Tue, 29 Apr 2003 21:14:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962356#M631843</guid>
      <dc:creator>John Dvorchak</dc:creator>
      <dc:date>2003-04-29T21:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: moving disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962357#M631844</link>
      <description>Regarding:  "...if the old disk from point to point topology is as /dev/dsk/c1t3d0, now it has changed to /dev/dsk/c3t3d0 because of changing the topology. will vgimport knows that these are the same physical devices and the only thing it changes is the h/w path?? ..."&lt;BR /&gt;&lt;BR /&gt;This is a very good question.&lt;BR /&gt;&lt;BR /&gt;Its my understanding that Arbitrated loop is a SAN topology.  Is this topology changing from the switch or the disk array?  If disk array are the luns being redefined?  If the luns aren't being redefined and its just a topology change, especially a topology change via the switch, then no.&lt;BR /&gt;&lt;BR /&gt;However you are indicating a change, from c1t3d0 to c3t3d0.  Is this speculation of fact?&lt;BR /&gt;&lt;BR /&gt;Need more information.  What's your disk array?  How are you changing your topology?  Is there a switch?</description>
      <pubDate>Tue, 29 Apr 2003 21:16:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-disk/m-p/2962357#M631844</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2003-04-29T21:16:13Z</dc:date>
    </item>
  </channel>
</rss>

