<?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: add disk with info onto a new server (quorom not present) in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406133#M201758</link>
    <description>Probably there were more than one pv in this VG. you are just importing one (by overriding the quorum). any lvol that spawns two disks, will give problem.&lt;BR /&gt;&lt;BR /&gt;You may try fsck /dev/vg01/rlvol1 -y full&lt;BR /&gt;&lt;BR /&gt;Anil</description>
    <pubDate>Fri, 22 Oct 2004 15:18:00 GMT</pubDate>
    <dc:creator>RAC_1</dc:creator>
    <dc:date>2004-10-22T15:18:00Z</dc:date>
    <item>
      <title>add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406121#M201746</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I'm trying to get the info off of a disk that is exact as 85 other servers/disks by putting it in a local server here where I am.  In the past these are the steps I've used and they've worked:&lt;BR /&gt;1) vgexport /dev/vg01&lt;BR /&gt;2) vgscan&lt;BR /&gt;3) mkdir /dev/vg01&lt;BR /&gt;4) mknod /dev/vg01/group c 64 0x01000&lt;BR /&gt;5) vgimport /dev/vg01 /dev/dsk/c0t5d0 &lt;BR /&gt;Get this error (this time):&lt;BR /&gt;vgimport: Warning:  Volume Group belongs to different CPU ID.&lt;BR /&gt;Can not determine if Volume Group is in use on another system. Continuing.&lt;BR /&gt;vgimport: Warning: Volume Group contains "2" PVs, "1" specified. Continuing.&lt;BR /&gt;vgimport: Quorum not present, or some physical volume(s) are missing.&lt;BR /&gt;Warning: A backup of this volume group may not exist on this machine.&lt;BR /&gt;Please remember to take a backup using the vgcfgbackup command after activating &lt;BR /&gt;the volume group.&lt;BR /&gt;6) vgchange -a y /dev/vg01&lt;BR /&gt;7) vgdisplay -v /dev/vg01&lt;BR /&gt;8) mkdir /home&lt;BR /&gt;9) mount /dev/vg01 /home&lt;BR /&gt;&lt;BR /&gt;Can anyone help?? Basically I just need to get the info off of the "new disk" then remove it, and put the "old disk" back in the server.  &lt;BR /&gt;&lt;BR /&gt;I sure do appreciate it.&lt;BR /&gt;Chet&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Oct 2004 12:34:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406121#M201746</guid>
      <dc:creator>Chet Woods</dc:creator>
      <dc:date>2004-10-22T12:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406122#M201747</link>
      <description>Maybe the post - but your mknod is missing a 0, should be:&lt;BR /&gt;&lt;BR /&gt;mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;&lt;BR /&gt;The answer is in the error:&lt;BR /&gt;Warning: Volume Group contains "2" PVs, "1" specified. Continuing&lt;BR /&gt;&lt;BR /&gt;Sounds like you need 2 disks from the original volume group...&lt;BR /&gt;&lt;BR /&gt;What if, on the original server, you did this:&lt;BR /&gt;&lt;BR /&gt;vgexport -s -v -p -m /tmp/vg01.map /dev/vg01&lt;BR /&gt;&lt;BR /&gt;Then copy the map file to the local server...&lt;BR /&gt;&lt;BR /&gt;then vgimport it:&lt;BR /&gt;&lt;BR /&gt;vgimport -s -v -m /tmp/vg01.map /dev/vg01&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Oct 2004 12:39:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406122#M201747</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-10-22T12:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406123#M201748</link>
      <description>1) vgexport /dev/vg01&lt;BR /&gt;2) vgscan&lt;BR /&gt;3) mkdir /dev/vg01&lt;BR /&gt;4) mknod /dev/vg01/group c 64 0x01000&lt;BR /&gt;5) vgimport /dev/vg01 /dev/dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;Add following after 1 to check few more things.&lt;BR /&gt;&lt;BR /&gt;pvdisplay /dev/dsk/c0t5d0 -- should resturn error.&lt;BR /&gt;strings /etc/lvmtab | grep c0t5d0&lt;BR /&gt;strings /etc/lvmconf/*.conf | grep c0t5d0&lt;BR /&gt;&lt;BR /&gt;Is this disk from SAN/NAS storage?? Is it being used on some other server??&lt;BR /&gt;Is this under HA??&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Fri, 22 Oct 2004 12:42:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406123#M201748</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-10-22T12:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406124#M201749</link>
      <description>What switches you are using for vgexport and vgimport. &lt;BR /&gt;&lt;BR /&gt;check the disks which are belonging to your VG.&lt;BR /&gt;vgexport -m mapfile -v /dev/vgxx &lt;BR /&gt;&lt;BR /&gt;take the mapfile to other server &lt;BR /&gt;&lt;BR /&gt;and &lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vgxx&lt;BR /&gt;mknod /dev/vgxx/group 64 0x0n0000&lt;BR /&gt;&lt;BR /&gt;vgimport -m mapfile (which have took from other server) -v vg_name pv_path&lt;BR /&gt;&lt;BR /&gt;This shall go through..&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Prashant&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Oct 2004 12:43:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406124#M201749</guid>
      <dc:creator>Prashant Zanwar_4</dc:creator>
      <dc:date>2004-10-22T12:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406125#M201750</link>
      <description>First, I appreciate everyone responding.  Secondly, I cannot do anything on the server that this disk originally was in (we've upgraded the servers and the 3rd party tech. didn't move over the data properly thus, the reason I have only the harddrive - which is internal by the way, to retrieve the data).&lt;BR /&gt;&lt;BR /&gt;I suppose I should tell you more about our environment:&lt;BR /&gt;These servers are OLD HP9000/e25, with 10.20 on them with 2 internal drives one 1 gb drive (with vg00, OS only) then there's a 2gb drive (with VG01, other filesystems that are required for our environment are stored here). &lt;BR /&gt;&lt;BR /&gt;To answer questions asked: Geoff - that was a typo on my part I've been typing (when it counts) 0x010000, RAC - this is not a SAN/NAS environment.  &lt;BR /&gt;&lt;BR /&gt;Here's the output from : pvdisplay /dev/dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;pvdisplay: Warning: couldn't query physical volume "/dev/dsk/c0t5d0":&lt;BR /&gt;The specified path does not correspond to physical volume attached to &lt;BR /&gt; this volume group&lt;BR /&gt;pvdisplay: Couldn't query the list of physical volumes.&lt;BR /&gt;pvdisplay: Couldn't retrieve the names of the physical volumes&lt;BR /&gt;belonging to volume group "/dev/vg01".&lt;BR /&gt;pvdisplay: Cannot display physical volume "/dev/dsk/c0t5d0".&lt;BR /&gt;&lt;BR /&gt;# strings /etc/lvmtab | grep c0t5d0&lt;BR /&gt;/dev/dsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;# strings /etc/lvmconf/*.conf |grep c0t5d0&lt;BR /&gt;/dev/rdsk/c0t5d0&lt;BR /&gt;/dev/rdsk/c0t5d0&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Chet</description>
      <pubDate>Fri, 22 Oct 2004 13:54:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406125#M201750</guid>
      <dc:creator>Chet Woods</dc:creator>
      <dc:date>2004-10-22T13:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406126#M201751</link>
      <description>Use The block device - rdsk not dsk for pvdisplay:&lt;BR /&gt;&lt;BR /&gt;pvdisplay /dev/rdsk/c0t5d0 &lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Oct 2004 14:19:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406126#M201751</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-10-22T14:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406127#M201752</link>
      <description>Geoff, &lt;BR /&gt;&lt;BR /&gt;Here's the output I got from that:&lt;BR /&gt;pvdisplay: Physical volume "/dev/rdsk/c0t5d0" is not a block special file.&lt;BR /&gt;Usage: pvdisplay</description>
      <pubDate>Fri, 22 Oct 2004 14:23:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406127#M201752</guid>
      <dc:creator>Chet Woods</dc:creator>
      <dc:date>2004-10-22T14:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406128#M201753</link>
      <description>Even if it is giving error, it is importing the disk.&lt;BR /&gt;&lt;BR /&gt;Modify the step 6 as follows and try mounting&lt;BR /&gt;the lvol&lt;BR /&gt;&lt;BR /&gt;6) vgchange -a y -q n /dev/vg01&lt;BR /&gt;7) vgdisplay -v /dev/vg01&lt;BR /&gt;8) mkdir /home&lt;BR /&gt;9) mount /dev/vg01/lvolx /home&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Fri, 22 Oct 2004 14:27:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406128#M201753</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-10-22T14:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406129#M201754</link>
      <description>whoops - sorry - I was thinking of pvcreate - you are right - block device is dsk NOT rdsk...&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Fri, 22 Oct 2004 14:32:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406129#M201754</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-10-22T14:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406130#M201755</link>
      <description>RAC,&lt;BR /&gt;&lt;BR /&gt;Here's what I did...#1-4 on my process worked, 5 got the same error changed #6-9 to coincide with your instructions and 6-8 worked, #9 recieved the following error:&lt;BR /&gt;# mount /dev/vg01/lvol1 /home&lt;BR /&gt;/dev/vg01/lvol1: unrecognized file system&lt;BR /&gt;&lt;BR /&gt;I can however mount /dev/vg01 to /home but, it's just a bunch of unusable block and raw files. (ex: lvol1, rlvol1, lvol2, rlvol2, etc...)&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Fri, 22 Oct 2004 14:52:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406130#M201755</guid>
      <dc:creator>Chet Woods</dc:creator>
      <dc:date>2004-10-22T14:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406131#M201756</link>
      <description>What does following return?/&lt;BR /&gt;&lt;BR /&gt;fstyp -v /dev/vg01/lvol1&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Fri, 22 Oct 2004 14:56:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406131#M201756</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-10-22T14:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406132#M201757</link>
      <description># fstyp -v /dev/vg01/lvol1&lt;BR /&gt;unknown_fstyp (no matches)</description>
      <pubDate>Fri, 22 Oct 2004 15:13:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406132#M201757</guid>
      <dc:creator>Chet Woods</dc:creator>
      <dc:date>2004-10-22T15:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406133#M201758</link>
      <description>Probably there were more than one pv in this VG. you are just importing one (by overriding the quorum). any lvol that spawns two disks, will give problem.&lt;BR /&gt;&lt;BR /&gt;You may try fsck /dev/vg01/rlvol1 -y full&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Fri, 22 Oct 2004 15:18:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406133#M201758</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-10-22T15:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406134#M201759</link>
      <description>It didn't like that either. Here's the output:&lt;BR /&gt;# fsck /dev/vg01/rlvol1 -y full&lt;BR /&gt;fsck: /etc/default/fs is used for determining the file system type&lt;BR /&gt;fsck: /etc/default/fs is used for determining the file system type&lt;BR /&gt;fsck: /etc/default/fs is used for determining the file system type&lt;BR /&gt;cannot open device /dev/vg01/rlvol1&lt;BR /&gt;vxfs fsck: /dev/vg00/rlvol3 is currently mounted&lt;BR /&gt;vxfs fsck: /dev/vg00/rlvol6 is currently mounted&lt;BR /&gt;vxfs fsck: /dev/vg00/rlvol7 is currently mounted&lt;BR /&gt;vxfs fsck: /dev/vg00/rlvol8 is currently mounted&lt;BR /&gt;vxfs fsck: /dev/vg00/rlvol9 is currently mounted&lt;BR /&gt;vxfs fsck: cannot convert /dev/vg01/apps to c character device&lt;BR /&gt;vxfs fsck: cannot convert /dev/vg01/home to c character device&lt;BR /&gt;vxfs fsck: cannot stat full&lt;BR /&gt;&lt;BR /&gt;I'm not sure why this isn't working...it's worked in the past.  UGGGHHHHH!!!</description>
      <pubDate>Fri, 22 Oct 2004 15:22:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406134#M201759</guid>
      <dc:creator>Chet Woods</dc:creator>
      <dc:date>2004-10-22T15:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406135#M201760</link>
      <description>It is not working because, there were more than two disks in VG, you are importing just one. The lvols than spawned more than onde disk will have problem.&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Fri, 22 Oct 2004 15:28:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406135#M201760</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-10-22T15:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406136#M201761</link>
      <description>I agree with Anil - you need that second disk....&lt;BR /&gt;&lt;BR /&gt;I think now would be a good time to mount the backup tape from the old server...and restore the data you are looking for...&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Fri, 22 Oct 2004 15:32:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406136#M201761</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-10-22T15:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406137#M201762</link>
      <description>I agree Geoff, I'm done screwing around with it for now.  I just want to get the data so I can get it to my users.  Thanks alot for all of your help guys!!&lt;BR /&gt;&lt;BR /&gt;Chet</description>
      <pubDate>Fri, 22 Oct 2004 15:43:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406137#M201762</guid>
      <dc:creator>Chet Woods</dc:creator>
      <dc:date>2004-10-22T15:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: add disk with info onto a new server (quorom not present)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406138#M201763</link>
      <description>Chet,&lt;BR /&gt;&lt;BR /&gt;How many lvols it creates?? (ll /dev/vg01/lvol*). If any of these sits just on one disk. You may luck mounting it.&lt;BR /&gt;&lt;BR /&gt;Try mounting all of then one by one. See if any of these gets mounted.&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Fri, 22 Oct 2004 15:55:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/add-disk-with-info-onto-a-new-server-quorom-not-present/m-p/3406138#M201763</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-10-22T15:55:54Z</dc:date>
    </item>
  </channel>
</rss>

