<?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: cannot create volume group in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-create-volume-group/m-p/2721244#M642109</link>
    <description>hi,&lt;BR /&gt;&lt;BR /&gt;try strings /etc/lvmtab&lt;BR /&gt;vgdisplay -v vg02&lt;BR /&gt;&lt;BR /&gt;vgremove if exists.&lt;BR /&gt;&lt;BR /&gt;Gideon</description>
    <pubDate>Fri, 10 May 2002 08:37:08 GMT</pubDate>
    <dc:creator>G. Vrijhoeven</dc:creator>
    <dc:date>2002-05-10T08:37:08Z</dc:date>
    <item>
      <title>cannot create volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-create-volume-group/m-p/2721243#M642108</link>
      <description>Hi &lt;BR /&gt;When trying to create a new volume group, I got this message " vgcreate: volume group /dev/vg02 could ne be created: A volume is already using this major and minor number. Please check the minor numer in group device file".&lt;BR /&gt;All files related to vg02 were already remove.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 10 May 2002 08:29:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-create-volume-group/m-p/2721243#M642108</guid>
      <dc:creator>Rashid Hamid</dc:creator>
      <dc:date>2002-05-10T08:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: cannot create volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-create-volume-group/m-p/2721244#M642109</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;try strings /etc/lvmtab&lt;BR /&gt;vgdisplay -v vg02&lt;BR /&gt;&lt;BR /&gt;vgremove if exists.&lt;BR /&gt;&lt;BR /&gt;Gideon</description>
      <pubDate>Fri, 10 May 2002 08:37:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-create-volume-group/m-p/2721244#M642109</guid>
      <dc:creator>G. Vrijhoeven</dc:creator>
      <dc:date>2002-05-10T08:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: cannot create volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-create-volume-group/m-p/2721245#M642110</link>
      <description>Hi Rashid,&lt;BR /&gt;&lt;BR /&gt;The problems seems to be with the major number and minor number which you are assigning to the group file of /dev/vg02. You are assigning a minor number which you had already assigned to a vg earlier.&lt;BR /&gt;&lt;BR /&gt;Do the following.&lt;BR /&gt;1. Do a vgexport of vg02&lt;BR /&gt;# vgexport /dev/vg02&lt;BR /&gt;&lt;BR /&gt;# rm -rf /dev/vg02&lt;BR /&gt;# mkdir /dev/vg02&lt;BR /&gt;&lt;BR /&gt;2. Now we need to assign a unique minor number for your vg02.&lt;BR /&gt;&lt;BR /&gt;First list out the minor numbers on your server by running the following command.&lt;BR /&gt;# ll /dev/*/group&lt;BR /&gt;eg:&lt;BR /&gt;# ll /dev/*/group&lt;BR /&gt;crw-r-----   1 root       sys         64 0x000000 May  5 13:36 /dev/vg00/group&lt;BR /&gt;crw-rw-rw-   1 root       sys         64 0x070000 May  7 14:20 /dev/vglock/group&lt;BR /&gt;&lt;BR /&gt;crw-rw-rw-   1 root       sys         64 0x080000 May  7 14:20 /dev/vgshare/grou&lt;BR /&gt;p&lt;BR /&gt;&lt;BR /&gt;3. Now create the group file by issuing the following &lt;BR /&gt;command.&lt;BR /&gt;&lt;BR /&gt;# mknod /dev/vg02/group c 64 0x030000&lt;BR /&gt;&lt;BR /&gt;4. And then go ahead and create the vg&lt;BR /&gt;# vgcreate /dev/vg02 /dev/dsk/xyz&lt;BR /&gt;&lt;BR /&gt;-Sukant</description>
      <pubDate>Fri, 10 May 2002 08:48:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-create-volume-group/m-p/2721245#M642110</guid>
      <dc:creator>Sukant Naik</dc:creator>
      <dc:date>2002-05-10T08:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: cannot create volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-create-volume-group/m-p/2721246#M642111</link>
      <description>You are creating a new volume group vg02.&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vg_name &lt;BR /&gt;mknod /dev/vg_name/group c 64 0x0n0000 &lt;BR /&gt;Here n should be unique.&lt;BR /&gt;Check using ll /dev/*/group&lt;BR /&gt;&lt;BR /&gt;Just check your /dev/vg02/group file.&lt;BR /&gt;If you have removed the vg02 volume group then also remove the /dev/vg02/group file.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 10 May 2002 08:52:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-create-volume-group/m-p/2721246#M642111</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2002-05-10T08:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: cannot create volume group</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cannot-create-volume-group/m-p/2721247#M642112</link>
      <description>Sukhant's procedure is exactly what I would recommend.  If you are still having problems &lt;BR /&gt;check the maximum number of vg's the kernel is configured for.  &lt;BR /&gt;&lt;BR /&gt;# kmtune |grep maxvgs&lt;BR /&gt;&lt;BR /&gt;default is 10.  If you have already hit 10 increase this kernel parameter.&lt;BR /&gt;</description>
      <pubDate>Mon, 13 May 2002 17:25:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cannot-create-volume-group/m-p/2721247#M642112</guid>
      <dc:creator>Geetha Alagappan</dc:creator>
      <dc:date>2002-05-13T17:25:33Z</dc:date>
    </item>
  </channel>
</rss>

