<?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 Creating SG failover package in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-sg-failover-package/m-p/4434522#M672675</link>
    <description>Hi,&lt;BR /&gt;Need a few tips as i'm new to SG and testing it.&lt;BR /&gt;I have a 2 HP-UX 11.31 servers clustered set up and now want to create a package eg VG package.&lt;BR /&gt;&lt;BR /&gt;I've a shared SAN disk presented to both servers and now need some tips for creating a package over the server cluster. (Im using the smh so far.)&lt;BR /&gt;&lt;BR /&gt;thanks</description>
    <pubDate>Mon, 08 Jun 2009 07:57:39 GMT</pubDate>
    <dc:creator>Francis Flan</dc:creator>
    <dc:date>2009-06-08T07:57:39Z</dc:date>
    <item>
      <title>Creating SG failover package</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-sg-failover-package/m-p/4434522#M672675</link>
      <description>Hi,&lt;BR /&gt;Need a few tips as i'm new to SG and testing it.&lt;BR /&gt;I have a 2 HP-UX 11.31 servers clustered set up and now want to create a package eg VG package.&lt;BR /&gt;&lt;BR /&gt;I've a shared SAN disk presented to both servers and now need some tips for creating a package over the server cluster. (Im using the smh so far.)&lt;BR /&gt;&lt;BR /&gt;thanks</description>
      <pubDate>Mon, 08 Jun 2009 07:57:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-sg-failover-package/m-p/4434522#M672675</guid>
      <dc:creator>Francis Flan</dc:creator>
      <dc:date>2009-06-08T07:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: Creating SG failover package</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-sg-failover-package/m-p/4434523#M672676</link>
      <description>&lt;BR /&gt;Hi &lt;BR /&gt;&lt;BR /&gt;you can find this as helpful.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://thomasvogt.wordpress.com/2008/08/26/mcserviceguard-cluster-installation-on-hp-ux-1131/" target="_blank"&gt;http://thomasvogt.wordpress.com/2008/08/26/mcserviceguard-cluster-installation-on-hp-ux-1131/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;refer to the Service Guard Manual:&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B3936-90140/B3936-90140.pdf" target="_blank"&gt;http://docs.hp.com/en/B3936-90140/B3936-90140.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;creation of package.&lt;BR /&gt;node1:&lt;BR /&gt;&lt;BR /&gt;1) create the VG(s) say vg02 to be used by the cluster package on one node. create LVs and filesys.&lt;BR /&gt;&lt;BR /&gt;make this VG cluster aware.&lt;BR /&gt;#vgchahge -c y /dev/vg02&lt;BR /&gt;create a map and rcp to the other node&lt;BR /&gt;&lt;BR /&gt;#vgexport -p -v -s -m /tmp/vg02.map /dev/vg02&lt;BR /&gt;#rcp /tmp/vg02.map node2:/tmp&lt;BR /&gt;2) import this VG on node2&lt;BR /&gt;&lt;BR /&gt;node2:&lt;BR /&gt;&lt;BR /&gt;#mkdir /dev/vg02&lt;BR /&gt;#mknod /dev/vg02/group c 64 0X020000&lt;BR /&gt;#vgimport -v -s -m /tmp/vg02.map /dev/vg02&lt;BR /&gt;&lt;BR /&gt;your VGs are configured.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;on node1: create the pkg template files for configuration and control.&lt;BR /&gt;&lt;BR /&gt;node1:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#cd /etc/cmcluster&lt;BR /&gt;#mkdir pkg1&lt;BR /&gt;#cd pkg1&lt;BR /&gt;#cmcmakepkg -s pkg1.cntl&lt;BR /&gt;#cmamkepakg -p pkg1.conf&lt;BR /&gt;&lt;BR /&gt;edit pkg1.conf&lt;BR /&gt;PACKAGE_NAME pkg1&lt;BR /&gt;PACKAGE_TYPE FAILOVER&lt;BR /&gt;FAILOVER_POLICY CONFIGURED_NODE&lt;BR /&gt;FAILBACK_POLICY MANUAL&lt;BR /&gt;SUBNET &amp;lt;192.168.0.0_SUBNET_ADDRESS&amp;gt;&lt;BR /&gt;run_script &lt;PATH_OF_THE_CONTROL_FILE_PKG1.CNTL&gt;&lt;BR /&gt;halt_script &lt;PATH_OF_THE_CONTROL_FILE_PKG1.CNTL&gt;&lt;BR /&gt;NODENAME node1&lt;BR /&gt;NODENAME node2&lt;BR /&gt;NODE_FAIL_FAST_ENABLED NO&lt;BR /&gt;SERVICE_NAME&lt;BR /&gt;SERVICE_FAIL_FAST_ENABLED NO&lt;BR /&gt;&lt;BR /&gt;edit the pkg1.cntl&lt;BR /&gt;&lt;BR /&gt;VG_NAME=&lt;BR /&gt;FS check and mount options -- put the VG,LV name amnd mount points and mount option&lt;BR /&gt;IP -- IP address of the package&lt;BR /&gt;SUBNET -- SUBNET as given in pkg1.conf&lt;BR /&gt;SERVICE_NAME&lt;BR /&gt;SERVICE_CMD&lt;BR /&gt;etc&lt;BR /&gt;&lt;BR /&gt;create the mount points as mentioned in the pkg1.cntl on node1 as well as node2.&lt;BR /&gt;&lt;BR /&gt;rcp these pkg1.conf and pkg1.cntl to node2 alsp creating on node2 /etc/cmcluster/pkg1.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;cmcheckconf -v -P /etc/cmcluster/pkg1.conf&lt;BR /&gt;no errors returned&lt;BR /&gt;cmapplyconf -v -P /etc/cmcluster/pkg1.conf&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;cmrunpkg -v pkg1 - to start the package&lt;BR /&gt;cmhaltpkg -v pkg1 - to halt the package&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;sujit&lt;/PATH_OF_THE_CONTROL_FILE_PKG1.CNTL&gt;&lt;/PATH_OF_THE_CONTROL_FILE_PKG1.CNTL&gt;</description>
      <pubDate>Mon, 08 Jun 2009 08:51:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-sg-failover-package/m-p/4434523#M672676</guid>
      <dc:creator>sujit kumar singh</dc:creator>
      <dc:date>2009-06-08T08:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Creating SG failover package</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-sg-failover-package/m-p/4434524#M672677</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/en/B3936-90117/ch03s03.html" target="_blank"&gt;http://www.docs.hp.com/en/B3936-90117/ch03s03.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/15682/optimizingfailoversg-1119.pdf" target="_blank"&gt;http://docs.hp.com/en/15682/optimizingfailoversg-1119.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B3936-90100/ch04s08.html" target="_blank"&gt;http://docs.hp.com/en/B3936-90100/ch04s08.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 08 Jun 2009 08:53:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-sg-failover-package/m-p/4434524#M672677</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-06-08T08:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Creating SG failover package</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-sg-failover-package/m-p/4434525#M672678</link>
      <description>Dear Francis&lt;BR /&gt;&lt;BR /&gt;u can see the all manuals of service guard&lt;BR /&gt;here&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/ha.html#Serviceguard" target="_blank"&gt;http://docs.hp.com/en/ha.html#Serviceguard&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;thanks and regards&lt;BR /&gt;&lt;BR /&gt;Sajjad sahir</description>
      <pubDate>Mon, 08 Jun 2009 09:58:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-sg-failover-package/m-p/4434525#M672678</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2009-06-08T09:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Creating SG failover package</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-sg-failover-package/m-p/4434526#M672679</link>
      <description>Hi Francis,&lt;BR /&gt;&lt;BR /&gt;Procedure for creating  and my very brief cookbook&lt;BR /&gt;&lt;BR /&gt;1) mkdir /etc/cmcluster/package_name&lt;BR /&gt;2) cd /etc/cmcluster/package_name&lt;BR /&gt;3) cmmakepkg -v -p pkg.conf&lt;BR /&gt;4) vi pkg.conf&lt;BR /&gt;5) cmmakepkg -v -s pkg.cntl&lt;BR /&gt;6) vi pkg.cntl&lt;BR /&gt;7) ftp pkg.cntl to all other nodes&lt;BR /&gt;8) cmcheckconf -v -P /etc/cmcluster/package_name/pkg.conf&lt;BR /&gt;9) cmapplyconf -v -P /etc/cmcluster/package_name/pkg.conf&lt;BR /&gt;</description>
      <pubDate>Sun, 14 Jun 2009 03:46:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-sg-failover-package/m-p/4434526#M672679</guid>
      <dc:creator>Basheer_2</dc:creator>
      <dc:date>2009-06-14T03:46:59Z</dc:date>
    </item>
  </channel>
</rss>

