<?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: Single Node ServiceGuard Cluster in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/single-node-serviceguard-cluster/m-p/4667499#M666759</link>
    <description>Hi there&lt;BR /&gt;&lt;BR /&gt;Yes you can setup one node cluster, there is no problem there.&lt;BR /&gt;&lt;BR /&gt;there are few discussions already on this forum, you can search single node cluster to find them&lt;BR /&gt;&lt;BR /&gt;here is one&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1185124" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1185124&lt;/A&gt;</description>
    <pubDate>Thu, 29 Jul 2010 05:23:06 GMT</pubDate>
    <dc:creator>njia_1</dc:creator>
    <dc:date>2010-07-29T05:23:06Z</dc:date>
    <item>
      <title>Single Node ServiceGuard Cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/single-node-serviceguard-cluster/m-p/4667498#M666758</link>
      <description>Hello ServiceGuard Experts !!! &lt;BR /&gt;Is it possible to make a single node ServiceGuard Cluster? &lt;BR /&gt;&lt;BR /&gt;There is just one hardware. No VM's. &lt;BR /&gt;&lt;BR /&gt;I just want to test some ServiceGuard functionality like Application monitoring and also learn to use it. &lt;BR /&gt;Also I do not want to go into the intracacies of having shared-disks at this moment atleast. &lt;BR /&gt;&lt;BR /&gt;Really do not want to use it for Application Failovers as of now atleast.</description>
      <pubDate>Thu, 29 Jul 2010 05:07:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/single-node-serviceguard-cluster/m-p/4667498#M666758</guid>
      <dc:creator>RW-S</dc:creator>
      <dc:date>2010-07-29T05:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Single Node ServiceGuard Cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/single-node-serviceguard-cluster/m-p/4667499#M666759</link>
      <description>Hi there&lt;BR /&gt;&lt;BR /&gt;Yes you can setup one node cluster, there is no problem there.&lt;BR /&gt;&lt;BR /&gt;there are few discussions already on this forum, you can search single node cluster to find them&lt;BR /&gt;&lt;BR /&gt;here is one&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1185124" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1185124&lt;/A&gt;</description>
      <pubDate>Thu, 29 Jul 2010 05:23:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/single-node-serviceguard-cluster/m-p/4667499#M666759</guid>
      <dc:creator>njia_1</dc:creator>
      <dc:date>2010-07-29T05:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: Single Node ServiceGuard Cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/single-node-serviceguard-cluster/m-p/4667500#M666760</link>
      <description>Yes.  It is possible to create a 1-node cluster.&lt;BR /&gt;After the SG software and patch is installed, &lt;BR /&gt;# cd /etc/cmcluster&lt;BR /&gt;# cmquerycl -C cluster.config -n &lt;NODENAME&gt;" to create a cluster configuration file.&lt;BR /&gt;&lt;BR /&gt;If you don't plan to have any storage, you can leave the cluster.config file as-is and perform a cmapplyconf to build the cluster.&lt;BR /&gt;Use cmruncl to start the cluster.  The only thing a package-less cluster will do is provide standby LAN failover, if any were configured in the cmapplyconf (check the comments in the cluster.config file).&lt;BR /&gt;&lt;BR /&gt;If/when you decide to create a package that uses disks, you can add the LVM VG name to the cluster.config file using a VOLUME_GROUP reference and cmapplyconf the file to "clusterize" the VG.&lt;BR /&gt;&lt;BR /&gt;To create a package, start with&lt;BR /&gt;# mkdir /etc/cmcluster/&lt;PKGNAME&gt;&lt;BR /&gt;# cd /etc/cmcluster/&lt;PKGNAME&gt;&lt;BR /&gt;# cmmakepkg -n &lt;PKGNAME&gt; &lt;PKGNAME.CONFIG&gt;&lt;BR /&gt;Then edit the pkgName.config file, uncommenting those resources that you want the package to use and add values as needed such as&lt;BR /&gt;vg  /dev/vg02&lt;BR /&gt;&lt;BR /&gt;If you plan on having the package start an application, you will likely need to reference an external start/stop script for the application in the pkgName.config file.&lt;BR /&gt;Add a reference to the external prescript.  Example:&lt;BR /&gt;external_pre_script /etc/cmcluster/&lt;PKGNAME&gt;/&lt;APPCONTROL.SH&gt;&lt;BR /&gt;&lt;BR /&gt;Then copy the external script template and edit it:&lt;BR /&gt;# cp ../examples/external_script.template  /etc/cmcluster/&lt;PKGNAME&gt;/&lt;APPCONTROL.SH&gt;&lt;BR /&gt;Edit the appControl.sh to perform the application startup and shutdown functions needed at package start and stop events.&lt;BR /&gt;&lt;BR /&gt;When you get to this point, add the package to the cluster:&lt;BR /&gt;# cmapplyconf -P &lt;PKGNAME.CONFIG&gt;&lt;BR /&gt;&lt;BR /&gt;NOTE: If you have a complex startup application such as Oracle that has prebuilt start/stop functions in the Enterprise Cluster Master toolkit, don't use the external script method, but install the ECM product and use the README in it (eg. /opt/cmcluster/toolkit/oracle/README) to implement the package.&lt;BR /&gt;&lt;BR /&gt;If all went properly, start the package with &lt;BR /&gt;# cmrunpkg &lt;PKGNAME&gt;&lt;BR /&gt;&lt;/PKGNAME&gt;&lt;/PKGNAME.CONFIG&gt;&lt;/APPCONTROL.SH&gt;&lt;/PKGNAME&gt;&lt;/APPCONTROL.SH&gt;&lt;/PKGNAME&gt;&lt;/PKGNAME.CONFIG&gt;&lt;/PKGNAME&gt;&lt;/PKGNAME&gt;&lt;/PKGNAME&gt;&lt;/NODENAME&gt;</description>
      <pubDate>Thu, 29 Jul 2010 11:26:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/single-node-serviceguard-cluster/m-p/4667500#M666760</guid>
      <dc:creator>Stephen Doud</dc:creator>
      <dc:date>2010-07-29T11:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Single Node ServiceGuard Cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/single-node-serviceguard-cluster/m-p/4667501#M666761</link>
      <description>&amp;gt;&amp;gt;&amp;gt;Is it possible to make a single node ServiceGuard Cluster?&lt;BR /&gt;Yes, it's possible to make a single node ServicegGuard cluster. &lt;BR /&gt;&lt;BR /&gt;Have a look at following to find more details about Managing Serviceguard:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://bizsupport1.austin.hp.com/bc/docs/support/SupportManual/c02057890/c02057890.pdf" target="_blank"&gt;http://bizsupport1.austin.hp.com/bc/docs/support/SupportManual/c02057890/c02057890.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Bhadresh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Jul 2010 12:22:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/single-node-serviceguard-cluster/m-p/4667501#M666761</guid>
      <dc:creator>Bhadresh</dc:creator>
      <dc:date>2010-07-29T12:22:58Z</dc:date>
    </item>
  </channel>
</rss>

