<?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 volume group when using clusters in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727179#M618084</link>
    <description>As a general rule of thumb you want a shared volume group to have the same minor number on both nodes, but you cannot have the same minor number on the same server, this will cause an error.  &lt;BR /&gt;&lt;BR /&gt;for ex:&lt;BR /&gt;&lt;BR /&gt;vg03 on servera&lt;BR /&gt;0x040000&lt;BR /&gt;&lt;BR /&gt;vg03 on serverb&lt;BR /&gt;0x040000</description>
    <pubDate>Wed, 08 Feb 2006 16:48:47 GMT</pubDate>
    <dc:creator>Deoncia Grayson_1</dc:creator>
    <dc:date>2006-02-08T16:48:47Z</dc:date>
    <item>
      <title>creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727170#M618075</link>
      <description>Hey guys, &lt;BR /&gt; Soon we will be installing a cluster (Oracle RAC), I am new to the clustering.  The RAC will be installed next week, but I was told to create the volume groups on both servers. But hosts 2 knows that the volume group already belongs to the volume group on host1. Does the RAC have to be built first?&lt;BR /&gt;Any input to this new clustering world I am now in, will be greatly appreciated.&lt;BR /&gt;&lt;BR /&gt;host2:[/]&lt;BR /&gt;# pvcreate /dev/rdsk/c9t0d1&lt;BR /&gt;pvcreate: The physical volume already belongs to a volume group&lt;BR /&gt;# mknod /dev/vg02/group c 64 0x020000&lt;BR /&gt;host2:[/]&lt;BR /&gt;# vgcreate -e 10000 -s 4 /dev/vg02 /dev/dsk/c9t0d1&lt;BR /&gt;vgcreate: Volume group "/dev/vg02" could not be created:&lt;BR /&gt;Device busy&lt;BR /&gt;host2:[/]&lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Wed, 08 Feb 2006 12:21:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727170#M618075</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2006-02-08T12:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727171#M618076</link>
      <description>The disks are seen by the systems in a cluster like this. You create once on one system, create a map file of the configuration, copy the map to the other nodes, and import the configuration there.&lt;BR /&gt;&lt;BR /&gt;On node 1:&lt;BR /&gt;&lt;BR /&gt;vgexport -p -s -m vg02.map vg02&lt;BR /&gt;&lt;BR /&gt;On node 2:&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vg02&lt;BR /&gt;mknod /dev/vg02/group c 64 0x020000 (check the original node "ls -l" for this hex number and make it match)&lt;BR /&gt;ftp, scp or whatever the vg02.map from node 1&lt;BR /&gt;vgimport -s -m vg02.map&lt;BR /&gt;&lt;BR /&gt;The Serviceguard documentation, like all HP documentation, is at docs.hp.com. Would be better to get some training before delving into a production environment, but I know how some companies are about offering training.</description>
      <pubDate>Wed, 08 Feb 2006 12:29:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727171#M618076</guid>
      <dc:creator>Jeff_Traigle</dc:creator>
      <dc:date>2006-02-08T12:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727172#M618077</link>
      <description>Oops... that vgimport command should be:&lt;BR /&gt;&lt;BR /&gt;vgimport -s -m vg02.map vg02</description>
      <pubDate>Wed, 08 Feb 2006 12:30:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727172#M618077</guid>
      <dc:creator>Jeff_Traigle</dc:creator>
      <dc:date>2006-02-08T12:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727173#M618078</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Issue a vgchange to make it cluster-aware:&lt;BR /&gt;$ vgchange -c y &lt;VGNAME&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Simon&lt;/VGNAME&gt;</description>
      <pubDate>Wed, 08 Feb 2006 12:36:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727173#M618078</guid>
      <dc:creator>Simon Wickham_6</dc:creator>
      <dc:date>2006-02-08T12:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727174#M618079</link>
      <description>Thanks for the enlightenment. feel free to add on any other useful info.  I will leave this thread open a couple of more days.</description>
      <pubDate>Wed, 08 Feb 2006 12:40:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727174#M618079</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2006-02-08T12:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727175#M618080</link>
      <description>I have one more question in regards to clustering using Oracle RAC (I have before never used Oracle either).  &lt;BR /&gt;&lt;BR /&gt;Lets say I created the minor number 0x020000 for vg02 on host1.    When I create the minor number in hosts2.  Do I need to use a differnet minor number? or can I use 0x020000 again?&lt;BR /&gt;&lt;BR /&gt;I have some Oracle documentation.  When creating the volume group on host1, it mentions not to use the same minor number on the same cluster.   But when it talks about the mknod on host2 it does not mention this point again.  &lt;BR /&gt;&lt;BR /&gt;I would think that the directions would mention this point when creating vg02 on host2, and that maybe it is a misprint and should have said not to create the same minor number on the host, instead of on the cluster.    &lt;BR /&gt;Does it matter one way or the other?</description>
      <pubDate>Wed, 08 Feb 2006 16:19:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727175#M618080</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2006-02-08T16:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727176#M618081</link>
      <description>Maybe I should open a new thread</description>
      <pubDate>Wed, 08 Feb 2006 16:20:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727176#M618081</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2006-02-08T16:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727177#M618082</link>
      <description>You don't want the same minor number for different volume groups. In fact, I think HP-UX gives an error if you attempt to do so. The minor numbers for the same volume group on the different nodes needs to be the same, as I recall, otherwise the vgimport will fail. (Someone can correct me if I'm wrong, but I seem to recall it works that way.)</description>
      <pubDate>Wed, 08 Feb 2006 16:25:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727177#M618082</guid>
      <dc:creator>Jeff_Traigle</dc:creator>
      <dc:date>2006-02-08T16:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727178#M618083</link>
      <description>Though the minor numbers for the same volume group in the cluster nodes need not be the same, it is a good practice to keep it the same.&lt;BR /&gt;&lt;BR /&gt;Nope, the vgimport will NOT fail if the minor number is different.&lt;BR /&gt;&lt;BR /&gt;I know in one case where the minor number MUST be kept the same between the cluster nodes. That is when the volume group is hosting the NFS filesystems. My understanding is the NFS file lock also includes the minor number of the VG.</description>
      <pubDate>Wed, 08 Feb 2006 16:46:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727178#M618083</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2006-02-08T16:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727179#M618084</link>
      <description>As a general rule of thumb you want a shared volume group to have the same minor number on both nodes, but you cannot have the same minor number on the same server, this will cause an error.  &lt;BR /&gt;&lt;BR /&gt;for ex:&lt;BR /&gt;&lt;BR /&gt;vg03 on servera&lt;BR /&gt;0x040000&lt;BR /&gt;&lt;BR /&gt;vg03 on serverb&lt;BR /&gt;0x040000</description>
      <pubDate>Wed, 08 Feb 2006 16:48:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727179#M618084</guid>
      <dc:creator>Deoncia Grayson_1</dc:creator>
      <dc:date>2006-02-08T16:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727180#M618085</link>
      <description>That must be where I was remembering it from... the NFS module of the Serviceguard class. Whether required or not, it does make your administrative life much easier if you keep as much as possible symmetrical between the nodes as possible.</description>
      <pubDate>Wed, 08 Feb 2006 16:53:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727180#M618085</guid>
      <dc:creator>Jeff_Traigle</dc:creator>
      <dc:date>2006-02-08T16:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727181#M618086</link>
      <description>John,&lt;BR /&gt;&lt;BR /&gt;I've found life a lot easier if I make sure that the group numbers are unique across all servers in the cluster.  And, I do it for ALL vg's in all of the clustered servers.  True enough, you don't HAVE TO.  But, you'll certainly avoid any chance of problems later on. I do not apply that rule for root (vg00) on both servers, but you can extend that to any vg's comprised of local disks that won't be moving with the package.&lt;BR /&gt;&lt;BR /&gt;At a minimum, the vg's group number needs to be unique for all clustered vg's in the cluster.&lt;BR /&gt;&lt;BR /&gt;So, if you've got disks that are moving between machines, then those numbers should be unique between all the machines, and not collide with ANY vg's group numbers (local or not) on all of the machines in the cluster.&lt;BR /&gt;&lt;BR /&gt;Which I just simplify to the sysadmin's in our group by saying "all vg's group numbers are unique across the WHOLE SAN" - which is an over-the-top way to avoid any problems down the line, but I do it anyway.</description>
      <pubDate>Wed, 08 Feb 2006 16:58:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727181#M618086</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2006-02-08T16:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: creating a volume group when using clusters</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727182#M618087</link>
      <description>Thanks guys.  Yes I would prefer to keep it the same too.  Thanks for clearing that up for me.</description>
      <pubDate>Wed, 08 Feb 2006 16:59:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-volume-group-when-using-clusters/m-p/3727182#M618087</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2006-02-08T16:59:31Z</dc:date>
    </item>
  </channel>
</rss>

