<?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: Stop/Star two diferent systems on a SAP Service Guard cluster in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278060#M703349</link>
    <description>Nope - don't uncomment - just leave those as well - because that's what starts/stops your Prod package.&lt;BR /&gt;&lt;BR /&gt;Here's the main section of the cntl script.&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
    <pubDate>Mon, 17 May 2004 09:05:53 GMT</pubDate>
    <dc:creator>Geoff Wild</dc:creator>
    <dc:date>2004-05-17T09:05:53Z</dc:date>
    <item>
      <title>Stop/Star two diferent systems on a SAP Service Guard cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278054#M703343</link>
      <description>Hi everybody,&lt;BR /&gt;IÂ´ve the following implementacion, i need your point of view&lt;BR /&gt;-Two nodes with SAP. &lt;BR /&gt;First node with R3 in cluster mode ( one package pkgr3)&lt;BR /&gt;Second node o adoptive, with SAP BW in no HA enviroment.&lt;BR /&gt;I need what is the correct way to perform the following issue&lt;BR /&gt;I need to stop BW on the second node when pkgr3 package is failover.&lt;BR /&gt;IÂ´m trying to run on scripts by adding lines codes in dbci.cntl, but the sysmen report one error in one line about the check the version of control scripts of MC/ServiceGuard o SGeRAC.&lt;BR /&gt;Scripts version, service guard, sgesap are support.&lt;BR /&gt;Thank you in advanced&lt;BR /&gt;Fern</description>
      <pubDate>Mon, 17 May 2004 08:21:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278054#M703343</guid>
      <dc:creator>fernando picouto</dc:creator>
      <dc:date>2004-05-17T08:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Stop/Star two diferent systems on a SAP Service Guard cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278055#M703344</link>
      <description>Fairly easy to do - we used to run our QA system as a pcakage on the node that wasn't running prod.&lt;BR /&gt;&lt;BR /&gt;Create your own CUSTOMER DEFINED FUNCTIONS&lt;BR /&gt;&lt;BR /&gt;function customer_defined_halt_iqa&lt;BR /&gt;{&lt;BR /&gt;        print "Checking if iqapkg is running"&lt;BR /&gt;&lt;BR /&gt;        STATE=`cmviewcl | grep iqa | awk '{ print $2 }'`&lt;BR /&gt;        if [[ $STATE = "down" ]]&lt;BR /&gt;          then&lt;BR /&gt;            echo "IQA is down...starting up IPR"&lt;BR /&gt;          else&lt;BR /&gt;            if [[ $STATE = "up" ]]&lt;BR /&gt;             then&lt;BR /&gt;                IQA=`cmviewcl | grep iqa | awk '{ print $5 }'`&lt;BR /&gt;                #IQA=`remsh iqadbci -n "/usr/bin/hostname"`&lt;BR /&gt;                print "IQA is running...on the current host: \c"&lt;BR /&gt;                print ${IQA}&lt;BR /&gt;                if [[ ${IQA} = $(/usr/bin/hostname) ]]&lt;BR /&gt;                  then&lt;BR /&gt;                        print "halting iqapkg on ${IQA}"&lt;BR /&gt;                        /usr/sbin/cmhaltpkg iqapkg&lt;BR /&gt;                fi&lt;BR /&gt;            fi&lt;BR /&gt;        fi&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Then in the MAIN part of the cntl:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;                verify_physical_data_replication   # add hook for MetroCluster&lt;BR /&gt;&lt;BR /&gt;                customer_defined_halt_iqa&lt;BR /&gt;&lt;BR /&gt;                activate_volume_group&lt;BR /&gt;&lt;BR /&gt;                activate_disk_group&lt;BR /&gt;&lt;BR /&gt;                customer_defined_fsck_mount&lt;BR /&gt;&lt;BR /&gt;                check_and_mount&lt;BR /&gt;&lt;BR /&gt;                verify_ha_nfs $1     # add hook for NFS&lt;BR /&gt;&lt;BR /&gt;                add_ip_address&lt;BR /&gt;&lt;BR /&gt;                get_ownership_dtc&lt;BR /&gt;&lt;BR /&gt;                customer_defined_run_cmds&lt;BR /&gt;&lt;BR /&gt;                start_services&lt;BR /&gt;&lt;BR /&gt;                start_resources&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Mon, 17 May 2004 08:30:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278055#M703344</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-05-17T08:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Stop/Star two diferent systems on a SAP Service Guard cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278056#M703345</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Use a test with the hostname, &lt;BR /&gt;If hostname = second_node_name&lt;BR /&gt;then stop_BW&lt;BR /&gt;endif&lt;BR /&gt;Put this this addon lines in the .cntl file, or in any scripts that are call by the .cntl file.&lt;BR /&gt;In our case the cntl use a sap.fonctions script in /etc/cmcluster, but the file depends on the SAP integration with MCSG.&lt;BR /&gt;&lt;BR /&gt;Johan&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 08:34:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278056#M703345</guid>
      <dc:creator>Johan Lorimier</dc:creator>
      <dc:date>2004-05-17T08:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Stop/Star two diferent systems on a SAP Service Guard cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278057#M703346</link>
      <description>Here is above in txt - formats nicer...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Mon, 17 May 2004 08:35:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278057#M703346</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-05-17T08:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Stop/Star two diferent systems on a SAP Service Guard cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278058#M703347</link>
      <description>We use sap.functions as well - but you want to stop the BW package prior to getting there - that's why we created a function to do that prior to the "function customer_defined_run_cmds"...&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Mon, 17 May 2004 08:42:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278058#M703347</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-05-17T08:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Stop/Star two diferent systems on a SAP Service Guard cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278059#M703348</link>
      <description>If I adding line code on dbci.cntl &lt;BR /&gt;function cutomer_defined_halt_package-name&lt;BR /&gt;Must I deleted or uncomment ?&lt;BR /&gt;function customer_defined_run_cms and&lt;BR /&gt;function customer_defined_halt_cms &lt;BR /&gt;MAIN part is MAINLINE Control Scripts ?&lt;BR /&gt;Thank you in advanced</description>
      <pubDate>Mon, 17 May 2004 08:54:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278059#M703348</guid>
      <dc:creator>fernando picouto</dc:creator>
      <dc:date>2004-05-17T08:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Stop/Star two diferent systems on a SAP Service Guard cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278060#M703349</link>
      <description>Nope - don't uncomment - just leave those as well - because that's what starts/stops your Prod package.&lt;BR /&gt;&lt;BR /&gt;Here's the main section of the cntl script.&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Mon, 17 May 2004 09:05:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278060#M703349</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-05-17T09:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Stop/Star two diferent systems on a SAP Service Guard cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278061#M703350</link>
      <description>This information is really usefull</description>
      <pubDate>Wed, 03 Nov 2004 00:50:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/stop-star-two-diferent-systems-on-a-sap-service-guard-cluster/m-p/3278061#M703350</guid>
      <dc:creator>sreeramam</dc:creator>
      <dc:date>2004-11-03T00:50:22Z</dc:date>
    </item>
  </channel>
</rss>

