<?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: Orlacle Listeners and Service Guard in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976680#M698152</link>
    <description>Hello Mike,&lt;BR /&gt;&lt;BR /&gt;I assume you have just 1 oracle installed with some databases running.&lt;BR /&gt;&lt;BR /&gt;If I'm right, to start listener once for all databases is enough.&lt;BR /&gt;&lt;BR /&gt;listener is just the Oracle's ear and into listener.ora file (check $ORACLE_HOME/network/admin/) there're all Oracle databases.&lt;BR /&gt;&lt;BR /&gt;Have you tried to execute lsnrctl start just once?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Carles&lt;BR /&gt;</description>
    <pubDate>Wed, 10 May 2006 03:07:50 GMT</pubDate>
    <dc:creator>Carles Viaplana</dc:creator>
    <dc:date>2006-05-10T03:07:50Z</dc:date>
    <item>
      <title>Orlacle Listeners and Service Guard</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976676#M698148</link>
      <description>When we start our Oracle Databases and Listeners all of the databases start but only the first listener starts, all others give message that listener was already started.&lt;BR /&gt;&lt;BR /&gt;I've attached a copy of the scripts that starts the databases and listeners, not being a DBA I'm not sure why they aren't starting.</description>
      <pubDate>Tue, 02 May 2006 12:16:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976676#M698148</guid>
      <dc:creator>MikeL_4</dc:creator>
      <dc:date>2006-05-02T12:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Orlacle Listeners and Service Guard</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976677#M698149</link>
      <description>I may be showing my ignorance of how Oracle does things now, but, back in the 7.X and 8.X days, only one listener ran. You configured it via listener.ora so it knew which database instances it was supposed to listen for. If that's still the case, for your control script, you'd take the listener startup and move it outside the for loop.</description>
      <pubDate>Tue, 02 May 2006 12:32:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976677#M698149</guid>
      <dc:creator>Jeff_Traigle</dc:creator>
      <dc:date>2006-05-02T12:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Orlacle Listeners and Service Guard</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976678#M698150</link>
      <description>I'm not a DBA but I know they started up the others and we have multiple Listeners running:&lt;BR /&gt;ps -ef | grep tnslsnr |grep -v grep&lt;BR /&gt;  oracle  1440     1  0  Apr 30  ?         0:06 /u01/oracle/product/9.2.0/bin/tnslsnr listener_esgwyp -inherit&lt;BR /&gt;  oracle  1375     1  0  Apr 30  ?         0:06 /u01/oracle/product/9.2.0/bin/tnslsnr listener_vogwyp -inherit&lt;BR /&gt;  oracle   102     1  0  Apr 30  ?         1:21 /u01/oracle/product/9.2.0/bin/tnslsnr LISTENER -inherit&lt;BR /&gt;  oracle  1426     1  0  Apr 30  ?         0:05 /u01/oracle/product/9.2.0/bin/tnslsnr listener_spgwyp -inherit&lt;BR /&gt;  oracle  1400     1  0  Apr 30  ?         0:09 /u01/oracle/product/9.2.0/bin/tnslsnr listener_dsngwyp -inherit</description>
      <pubDate>Tue, 02 May 2006 12:45:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976678#M698150</guid>
      <dc:creator>MikeL_4</dc:creator>
      <dc:date>2006-05-02T12:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: Orlacle Listeners and Service Guard</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976679#M698151</link>
      <description>The problem that I see is that you don't ever change the value of LISTENER so after you start the first one, the following check is run:&lt;BR /&gt;&lt;BR /&gt;   if [ "`lsnrctl status $LISTENER | grep -i 'NO listener'`" != "" ]&lt;BR /&gt;&lt;BR /&gt;FAILS because you already started $LISTENER&lt;BR /&gt;&lt;BR /&gt;So you drop here:&lt;BR /&gt;&lt;BR /&gt;   else&lt;BR /&gt;        _LogMsg "(OL_startListener): Listener is already started."&lt;BR /&gt;        ##_LogMsg "(OL_startListener): Listener for \"$ORACLE_SID\" is already started."&lt;BR /&gt;        return 0&lt;BR /&gt;</description>
      <pubDate>Tue, 02 May 2006 13:16:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976679#M698151</guid>
      <dc:creator>Kent Ostby</dc:creator>
      <dc:date>2006-05-02T13:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Orlacle Listeners and Service Guard</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976680#M698152</link>
      <description>Hello Mike,&lt;BR /&gt;&lt;BR /&gt;I assume you have just 1 oracle installed with some databases running.&lt;BR /&gt;&lt;BR /&gt;If I'm right, to start listener once for all databases is enough.&lt;BR /&gt;&lt;BR /&gt;listener is just the Oracle's ear and into listener.ora file (check $ORACLE_HOME/network/admin/) there're all Oracle databases.&lt;BR /&gt;&lt;BR /&gt;Have you tried to execute lsnrctl start just once?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Carles&lt;BR /&gt;</description>
      <pubDate>Wed, 10 May 2006 03:07:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976680#M698152</guid>
      <dc:creator>Carles Viaplana</dc:creator>
      <dc:date>2006-05-10T03:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Orlacle Listeners and Service Guard</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976681#M698153</link>
      <description>Thanks</description>
      <pubDate>Wed, 10 May 2006 06:40:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/orlacle-listeners-and-service-guard/m-p/4976681#M698153</guid>
      <dc:creator>MikeL_4</dc:creator>
      <dc:date>2006-05-10T06:40:31Z</dc:date>
    </item>
  </channel>
</rss>

