<?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: creating a vg in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904255#M633902</link>
    <description>Not my day:  make that "35 is a lot".&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You did do a pvcreate, too, didn't you?&lt;BR /&gt;&lt;BR /&gt;Pete</description>
    <pubDate>Thu, 13 Feb 2003 20:01:16 GMT</pubDate>
    <dc:creator>Pete Randall</dc:creator>
    <dc:date>2003-02-13T20:01:16Z</dc:date>
    <item>
      <title>creating a vg</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904250#M633897</link>
      <description>I have existing vg's from vg00 to vg34 on my system. vg00 is local disk and the rest reside on a EMC Sym. I attached Hitachi disk today and wanted to create vgh35 as a new volume group.&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vgh35&lt;BR /&gt;mknod /dev/vgh35/group c 64 0x230000&lt;BR /&gt;&lt;BR /&gt;then i try to make the vg &lt;BR /&gt;&lt;BR /&gt;vgcreate /dev/vgh35 /dev/dsk/c19t0d0&lt;BR /&gt;&lt;BR /&gt;and i get a message stating the vg already exists. I know this has something to do with the mknod. Can anyone tell me what the deal is? i think 35=23 in hex. Do i have enough 0's??</description>
      <pubDate>Thu, 13 Feb 2003 19:54:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904250#M633897</guid>
      <dc:creator>Chris Fadrowski</dc:creator>
      <dc:date>2003-02-13T19:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: creating a vg</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904251#M633898</link>
      <description>Hi Chris:&lt;BR /&gt;&lt;BR /&gt;Check for duplicate minor numbers"&lt;BR /&gt;&lt;BR /&gt;# ls -l /dev/vg*/group&lt;BR /&gt;&lt;BR /&gt;Yes, the minor number is hexadecimal.  Make sure your kernel's 'maxvgs' parameter is set high enough to accomodate this.  By default, ten volume groups are supported (0-09).&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 13 Feb 2003 19:59:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904251#M633898</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-02-13T19:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: creating a vg</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904252#M633899</link>
      <description>Chris,&lt;BR /&gt;&lt;BR /&gt;Yes, you've got enough zeroes (you need six digits after the x).&lt;BR /&gt;&lt;BR /&gt;What is maxvg set to?  I know that doesn't make any sense according to the error you're getting, but 35 is a log.&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 13 Feb 2003 19:59:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904252#M633899</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-02-13T19:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: creating a vg</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904253#M633900</link>
      <description>Hi Chris,&lt;BR /&gt;&lt;BR /&gt;Your minor # is OK.....&lt;BR /&gt;Do a strings on /etc/lvmtab &amp;amp; grep for the vgh35 - may have already use dthe name.&lt;BR /&gt;Also do this&lt;BR /&gt;ll /dev/vg*/group&lt;BR /&gt;and check all the minors for a duplicate - may have already used 0x230000&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Thu, 13 Feb 2003 19:59:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904253#M633900</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2003-02-13T19:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: creating a vg</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904254#M633901</link>
      <description>The reason is your minor number (0x230000) is already used by another vg. You have to give unique numbers here for each different vgs. Yes 35=23 in hex, but that might have been used by another vg. Checke /dev directory:&lt;BR /&gt;&lt;BR /&gt;# cd /dev&lt;BR /&gt;# ls  -al vg* | grep group (provided all your VG names start with 'vg')&lt;BR /&gt;&lt;BR /&gt;This will list you all used minor numbers and figure out the next value from it.</description>
      <pubDate>Thu, 13 Feb 2003 20:01:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904254#M633901</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2003-02-13T20:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: creating a vg</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904255#M633902</link>
      <description>Not my day:  make that "35 is a lot".&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You did do a pvcreate, too, didn't you?&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 13 Feb 2003 20:01:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904255#M633902</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-02-13T20:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: creating a vg</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904256#M633903</link>
      <description>Again, yes you have enough '0's in it. Also check the maxvgs parameter on the system kernel. This will limit your maximu allowed VGs in the system. Check it out and see if you 've reached the limit:&lt;BR /&gt;&lt;BR /&gt;# sysdef | grep maxvgs&lt;BR /&gt;# kmtune | grep maxvgs</description>
      <pubDate>Thu, 13 Feb 2003 20:04:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904256#M633903</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2003-02-13T20:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: creating a vg</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904257#M633904</link>
      <description>Need.....More.....Coffee...&lt;BR /&gt;&lt;BR /&gt;Ignore my first suggestion. You'd have seen that problem in the mkdir command. &lt;BR /&gt;Still betting that 0x230000 duplicate is the problem. &lt;BR /&gt;And BTW you already have 35 VGs on the system as vg00 -to-&amp;gt; vg34 IS 35 total.&lt;BR /&gt;Use 0x240000&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Jeff</description>
      <pubDate>Thu, 13 Feb 2003 20:05:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904257#M633904</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2003-02-13T20:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: creating a vg</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904258#M633905</link>
      <description>yep, someone created vg23 with 0x230000. I should of thought to use ll /dev/vg*/group, sorry about that. I have my max vg's at 75 so that should not be a problem. Anyways, vg23 is dead now, it's emc disk that is empty and going away. i will just vgexport it and use it over. You don't see any problems with this do you? thanks for everyone's help. This forum is amazing.</description>
      <pubDate>Thu, 13 Feb 2003 20:08:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904258#M633905</guid>
      <dc:creator>Chris Fadrowski</dc:creator>
      <dc:date>2003-02-13T20:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: creating a vg</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904259#M633906</link>
      <description>Hi Chris:&lt;BR /&gt;&lt;BR /&gt;Yes, 'vgexport' is the cleanest and fastest way to dispose of a volume group -- '/dev/vgNN' entries, cleanup of '/etc/lvmtab', etc.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 13 Feb 2003 20:14:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904259#M633906</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-02-13T20:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: creating a vg</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904260#M633907</link>
      <description>Yes, you can get rid of that vg23 by doing a 'vgexport'. Once you 've done that check:&lt;BR /&gt;# strings /etc/lvmtab - and  make sure you have removed that properly.&lt;BR /&gt;&lt;BR /&gt;You can then use those minor numbers.</description>
      <pubDate>Thu, 13 Feb 2003 20:16:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-vg/m-p/2904260#M633907</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2003-02-13T20:16:16Z</dc:date>
    </item>
  </channel>
</rss>

