<?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: dual listeners in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463590#M772844</link>
    <description>A couple additions to previous posts:&lt;BR /&gt;No real need to multiple listeners unless:&lt;BR /&gt; Using more than one version on same server&lt;BR /&gt; Very heavy user load.&lt;BR /&gt;Ie: we use 4x 7.3.4 Instances, and 2x 8.1.5&lt;BR /&gt;There are two listeners (LISTENER and LISTENER8). To start/modify LISTENER, change the OracleSID to one of the 7.3.4 instances, and run lsnrctl. This will start the ctl program with LISTENER set as the current listener.&lt;BR /&gt;To modify LISTENER8, change SID to one of the 8.1.5 instances, run lsnrctl then the following command:&lt;BR /&gt;set current_listener LISTENER8&lt;BR /&gt;This will allow you to start/stop/status the other listener.</description>
    <pubDate>Thu, 16 Nov 2000 16:12:08 GMT</pubDate>
    <dc:creator>Dan Peters</dc:creator>
    <dc:date>2000-11-16T16:12:08Z</dc:date>
    <item>
      <title>dual listeners</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463584#M772838</link>
      <description>i'm having trouble implementing three listeners(3 instance). any pointers&lt;BR /&gt;thx&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Nov 2000 19:09:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463584#M772838</guid>
      <dc:creator>David Bellamy</dc:creator>
      <dc:date>2000-11-09T19:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: dual listeners</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463585#M772839</link>
      <description>I'm not a DBA, but I beat my DBA's into doing this in a MC/SG clustered system.&lt;BR /&gt;For Oracle, the different database listeners are defined in the listener.ora file, EACH WITH IT'S OWN PORT. For example: abd01 is port 1522, and efg01 is port 1523.&lt;BR /&gt;You want to avoid using port 1521. Leave this for the default listener.&lt;BR /&gt;Hope this helps.</description>
      <pubDate>Thu, 09 Nov 2000 20:54:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463585#M772839</guid>
      <dc:creator>John Eaton</dc:creator>
      <dc:date>2000-11-09T20:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: dual listeners</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463586#M772840</link>
      <description>Be sure to name each listener something different.  The default is "LISTENER".&lt;BR /&gt;&lt;BR /&gt;We have 5 running on a V class without issue.</description>
      <pubDate>Thu, 09 Nov 2000 20:57:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463586#M772840</guid>
      <dc:creator>Tom Danzig</dc:creator>
      <dc:date>2000-11-09T20:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: dual listeners</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463587#M772841</link>
      <description>Are you sure you want three listeners (you are talking about Oracle Listeners, I assume)&lt;BR /&gt;&lt;BR /&gt;One listener can listen for requests for more then one database.</description>
      <pubDate>Fri, 10 Nov 2000 09:30:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463587#M772841</guid>
      <dc:creator>Geetam</dc:creator>
      <dc:date>2000-11-10T09:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: dual listeners</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463588#M772842</link>
      <description>Create listener configuration file in $ORACLE_HOME/network/admin/listener.ora and specify in that file all instances for the listener.&lt;BR /&gt;Example of listener.ora&lt;BR /&gt;LISTENER =&lt;BR /&gt;  (ADDRESS_LIST =&lt;BR /&gt;        (ADDRESS= (PROTOCOL= IPC)(KEY= my_openview.aaa.com))&lt;BR /&gt;        (ADDRESS= (PROTOCOL= IPC)(KEY= openview))&lt;BR /&gt;        (ADDRESS= (PROTOCOL= IPC)(KEY= my_test.aaa.com))&lt;BR /&gt;        (ADDRESS= (PROTOCOL= IPC)(KEY= test))&lt;BR /&gt;        (ADDRESS= (PROTOCOL= TCP)(Host= my)(Port= 1527)&lt;BR /&gt;                  (COMMUNITY = TCP.aaa.com))&lt;BR /&gt;  )&lt;BR /&gt;SID_LIST_LISTENER =&lt;BR /&gt;  (SID_LIST =&lt;BR /&gt;    (SID_DESC =&lt;BR /&gt;      (GLOBAL_DBNAME= my_openview.aaa.com)&lt;BR /&gt;     (ORACLE_HOME= /app/oracle/product/7.3.4)&lt;BR /&gt;      (SID_NAME = openview)&lt;BR /&gt;      (PRESPAWN_MAX = 0)&lt;BR /&gt;    )&lt;BR /&gt;    (SID_DESC =&lt;BR /&gt;      (GLOBAL_DBNAME= my_test.aaa.com)&lt;BR /&gt;     (ORACLE_HOME= /app/oracle/product/7.3.4)&lt;BR /&gt;      (SID_NAME = test)&lt;BR /&gt;      (PRESPAWN_MAX = 0)&lt;BR /&gt;    )&lt;BR /&gt;  )&lt;BR /&gt;STARTUP_WAIT_TIME_LISTENER = 0&lt;BR /&gt;CONNECT_TIMEOUT_LISTENER = 10&lt;BR /&gt;TRACE_LEVEL_LISTENER = OFF</description>
      <pubDate>Fri, 10 Nov 2000 09:43:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463588#M772842</guid>
      <dc:creator>Vladislav Demidov</dc:creator>
      <dc:date>2000-11-10T09:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: dual listeners</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463589#M772843</link>
      <description>Although you can implement only one listener for multiple database, if you have sufficient load, it is warranted to create multiples. &lt;BR /&gt;Note that it is a good idea to instantiate a listener for each version of the database that you are running.&lt;BR /&gt;IE: we have 4 Instances of 7.3.4, and two of 8.1.5, so we are running two listeners (LISTENER and LISTENER8).&lt;BR /&gt;The oracleSID will determine which listener we can work with.&lt;BR /&gt;If we use a 7.3.4 environ, then lsnrctl will start with the LISTENER set as current.&lt;BR /&gt;If we want to modify the LISTENER8, then first, change the SID to one of the 8.1.5 DB's, then start lsnrctl. Use the command "set current_listener LISTENER8" to change the current listener, then you can issue the normal commands, like start, status, etc.</description>
      <pubDate>Thu, 16 Nov 2000 16:07:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463589#M772843</guid>
      <dc:creator>Dan Peters</dc:creator>
      <dc:date>2000-11-16T16:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: dual listeners</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463590#M772844</link>
      <description>A couple additions to previous posts:&lt;BR /&gt;No real need to multiple listeners unless:&lt;BR /&gt; Using more than one version on same server&lt;BR /&gt; Very heavy user load.&lt;BR /&gt;Ie: we use 4x 7.3.4 Instances, and 2x 8.1.5&lt;BR /&gt;There are two listeners (LISTENER and LISTENER8). To start/modify LISTENER, change the OracleSID to one of the 7.3.4 instances, and run lsnrctl. This will start the ctl program with LISTENER set as the current listener.&lt;BR /&gt;To modify LISTENER8, change SID to one of the 8.1.5 instances, run lsnrctl then the following command:&lt;BR /&gt;set current_listener LISTENER8&lt;BR /&gt;This will allow you to start/stop/status the other listener.</description>
      <pubDate>Thu, 16 Nov 2000 16:12:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dual-listeners/m-p/2463590#M772844</guid>
      <dc:creator>Dan Peters</dc:creator>
      <dc:date>2000-11-16T16:12:08Z</dc:date>
    </item>
  </channel>
</rss>

