How to configure listener while upgrade to RAC 11.2.0.2?

I have 11.2.0.1 and preparing for upgrade to 11.2.0.2. While upgrading the single node we have to set the new oracle_home then configure listener for new home then upgrade the db.
How to follow the same steps in case of RAC. The listeners are running from grid_home.So how to create all the listeners for new oracle_home? So by just installing GRID binaries does is install the GI completely to 11.2.0.2?
Also Do I have to plan for listeners while RDBMS upgrade ?
ENV:
Server: Windows 2008R2
DB: RAC two node on ASM
Storage: SAN
Kindly explain.

Sabastian,
I have configured the 3 IPs for SCAN. When you replied for SCAN I checked the status of SCAN IPs. And the strange thing is on node 1 status of SCAN IPs gives "could not find the srvice name.
On second node :
LSNRCTL> *status LISTENER_SCAN1*
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN1)))
STATUS of the LISTENER
Alias LISTENER_SCAN1
Version TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Production
Start Date 28-APR-2011 15:12:33
Uptime 3 days 16 hr. 17 min. 14 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File F:\gridinfra\11.2.0\grid\network\admin\listener.ora
Listener Log File f:\gridinfra\11.2.0\grid\log\diag\tnslsnr\PDFPGISORPRD1\listener_scan1\alert\log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\LISTENER_SCAN1ipc)))
*The listener supports no service*s
The command completed successfully
LSNRCTL> *status LISTENER_SCAN2*
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN2)))
STATUS of the LISTENER
Alias LISTENER_SCAN2
Version TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Production
Start Date 26-APR-2011 10:38:30
Uptime 5 days 22 hr. 44 min. 58 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File F:\gridinfra\11.2.0\grid\network\admin\listener.ora
Listener Log File f:\gridinfra\11.2.0\grid\log\diag\tnslsnr\PDFPGISORPRD1\listener_scan2\alert\log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\LISTENER_SCAN2ipc)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=164.156.155.81)(PORT=1521)))
Services Summary...
Service "gisprd" has 2 instance(s).
Instance "gisprd1", status READY, has 121 handler(s) for this service...
Instance "gisprd2", status READY, has 121 handler(s) for this service...
The command completed successfully
LSNRCTL> *status LISTENER_SCAN3*
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN3)))
STATUS of the LISTENER
Alias LISTENER_SCAN3
Version TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Production
Start Date 26-APR-2011 10:38:30
Uptime 5 days 22 hr. 45 min. 3 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File F:\gridinfra\11.2.0\grid\network\admin\listener.ora
Listener Log File f:\gridinfra\11.2.0\grid\log\diag\tnslsnr\PDFPGISORPRD1\listener_scan3\alert\log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\LISTENER_SCAN3ipc)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=164.156.155.83)(PORT=1521)))
Services Summary...
Service "gisprd" has 2 instance(s).
Instance "gisprd1", status READY, has 121 handler(s) for this service...
Instance "gisprd2", status READY, has 121 handler(s) for this service...
The command completed successfully
LSNRCTL>
Why it is so? Last week when I was working it was fine. So do you mean if I have three SCAN IPs, all three IPs has to be in listener.ora?
Regards...Mayura
Edited by: user2995637 on May 2, 2011 6:32 AM

Similar Messages

  • How to configure listener and tnsnames.ora on 10g version

    how to configure listener and tnsnames.ora on 10g version

    If you are on linux platform, on command prompt execute netmgr and configure listener fromt there. Or go to $oracle_home/network/admin/listner.ora write the following
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    For tnsnames.ora write the following
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    )

  • How to Configure Listener in Weblogic 6.0

    I have depoloyed my java application (war) in weblogic 6.0
    This application has to behave as a listener for a client socket call on a particular port (say 5588).
    This thing works fine in my WSAD environment with the internal server.
    How do I configure Listener in Weblogic 6.0 so that my deployed application starts accepting socket call as a listener?
    Please Suggest............

    Here's the flow...
    1) My application is deployed in Weblogic 6.0/7.0. It has to do an additional task of listening on an internal port (say 5588) apart from exposing server socket on say port 4499.
    2) My application during startup calls a servlet and via servlet init and routing thereby to different classes my application becomes ready to behave as Client Socket on 5588. I am copying web.xml along with this mail. Please review the web.xml and let me know if it s good enough to invoke the servlet during startup?
    3) A standalone java application tries to connect to my application mentioned above on port 5588 via a socket (localhost, 5588). Somehow my application doesnt seems to get hit. I did netstat and port was in listening mode.
    4) 5588 being an internal port, I dont think it needs to be configured in Config.xml. Am I right? I didnt find any way of adding new ports to Config.xml apart from standard port on web.
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
         <display-name>MyProject</display-name>
         <servlet>
              <servlet-name>messagerouter</servlet-name>
              <display-name><![CDATA[Apache-SOAP Message Router]]></display-name>
              <servlet-class>org.apache.soap.server.http.MessageRouterServlet</servlet-class>
              <init-param>
                   <param-name>faultListener</param-name>
                   <param-value>org.apache.soap.server.DOMFaultListener</param-value>
              </init-param>
         </servlet>
         <servlet>
              <servlet-name>rpcrouter</servlet-name>
              <display-name><![CDATA[Apache-SOAP RPC Router]]></display-name>
              <servlet-class>com.s1.adapter.fundtech.MyServlet</servlet-class>
              <init-param>
                   <param-name>faultListener</param-name>
                   <param-value>org.apache.soap.server.DOMFaultListener</param-value>
              </init-param>
         </servlet>
         <servlet-mapping>
              <servlet-name>rpcrouter</servlet-name>
              <url-pattern>/servlet/rpcrouter</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>messagerouter</servlet-name>
              <url-pattern>/servlet/messagerouter</url-pattern>
         </servlet-mapping>
    </web-app>

  • How to configure listener when 8.1.5 & OAS 4.08 on same Linux box

    Linux: Red HAT 6.1
    OAS: 4.08
    ORA: 8.1.5 sp2
    When I install OAS on different home on the same server where the 8i is installed and try to start up the lsn service for it I get an error. How the configuration should be done in this case where we have two different homes with two different listener versions? whcih one should be used ?
    Thanx
    null

    I did the manipulation...
    The listener starts well, but the creation of a DAD ( Net 8 service version, of course) is impossible. After the sys password prompt, it opens a blank window,
    and nothing more ...
    The dadadmin cgi has been started and is running on the server, but does nothing.
    Config : RH 6.1, Kernel 2.2.12, oas 4.0.8.1,
    768 Mo RAM, enough disk, TNS_ADMIN set for oas4.0.8.1 to the tnsnames.ora of Ora 8i, distinct ORACLE_HOME
    Any clues ?
    Thanks.

  • How to Configure a oracle R12 with RAC on two different  system .

    I have one laptop and one desktop
    Laptop----
    on laptop I have install vmware 8
    Host OS --win7
    Guest OS---linux 4
    Desktop ---
    On Desktop I have install Vmware 8
    Hosts OS --- Win XP
    Guest OS ---Linux 4
    Plz suggest How configure oracle R12 with RAC using both system .

    Hussein Sawwan wrote:
    on laptop I have install vmware 8
    Host OS --win7
    Guest OS---linux 4
    Desktop ---
    On Desktop I have install Vmware 8
    Hosts OS --- Win XP
    Guest OS ---Linux 4
    Plz suggest How configure oracle R12 with RAC using both system .If you want to configure RAC, then you must have the same OS installed on all RAC nodes -- See (RAC: Frequently Asked Questions [ID 220970.1], Does Oracle Clusterware or Oracle Real Application Clusters support heterogeneous platforms?) for details.
    Once you have the same OS, please refer to:
    Oracle E-Business Suite Release 12 High Availability Documentation Roadmap [ID 1072636.1]
    Using Oracle 10g Release 2 Real Application Clusters and Automatic Storage Management with Oracle E-Business Suite Release 12 [ID 388577.1]
    Using Oracle 11g Release 2 Real Application Clusters with Oracle E-Business Suite Release 12 [ID 823587.1]
    Thanks,
    HusseinHi Hussein,
    For Rac I am using both same OS (linux 4) for both nodes .
    Plz suggest its possible to install two nodes on different machine(diiferent virtual machine on different system ) .Can communicate both machine without any problem if its possible plz provide links.

  • URGENT:how to make adjustments while upgrading from 4.6c to ECC6.0

    Hi experts,
    I have few queries regarding technical upgrade project from 4.6c to ECC6.0 ; Can anyone clarify t he following doubts.
    After completion of SPDD & SPAU adjustments,we are adjusting custom objects to unicode compatible. while doing this
    1. How to take care about SCRIPTS,REPORT WRITERS  ABAPQUERIES and SAPQUERIES
    2. Can we start testing standard Tcodes after completion of SPDD & SPAU adjustments.
    thanks in advance.
    helpful answers will be rewarded.
    BR,
    Sastry.
    Edited by: prssastry on May 24, 2008 10:03 AM

    Thanks Geetha,
    Can anybody tell me the ABAPer role in the technical upgrade .
    After completion of SPDD & SPAU adjustments,we are adjusting custom objects to unicode compatible. while doing this
    1. How to take care about SCRIPTS,REPORT WRITERS ABAPQUERIES and SAPQUERIES
    2. Can we start testing standard Tcodes after completion of SPDD & SPAU adjustments.
    thanks in advance.
    helpful answers will be rewarded.
    sastry.

  • How to configure listener across firewall and router

    I am trying a test to see if the following scenario will work and I am looking for insight because I am not getting anywhere fast....
    I have a computer on an internal network running oracle 9iR2. This computer has a web server exposed through a router/firewall with port 80 open. I want to open port 1521 and make the oracle listenser available to someone outside my network. The client only has internet access through their ISP. Basically it would be like hitting the web server over the internet. I am not sure if it is possible to use SQL*Plus to connect to a database server using the name of the router (www.company.com) and have the Oracle database available.

    I have serious doubts that this will work.This sould working definitely. But this question is more related to networking than DBA.
    So this action (and aalso analysis) must be done by somebody who are responsible for (and unsterstand) routing and firewall administration.
    This "networking person" (credited as somebody before) must prevent unauthorized access to your DB and also prevent sniffing (for example your 3rd parties will be connected via IPSEC connection).

  • How to configure oracle listener profile for multiple oracle database

    Hi,
    I am going to install solution manager system in the same server of ERP EHP4 on Windows. Both DB are oracle.
    I'd like to know how to configure listener in this kind of envirnmonent.
    a. use two listener and different ports
    b. use same listener but different ports
    c. use same listener and same port
    Which is the correct mothed?
    And, after installation, there seem three set of profiles of listten, one for ERP, one for SLM, and the other for OS?(%windir%system32), which one is functional?
    Please advise.
    Thanks a lot.
    Regards,
    Alex

    Hi,
    standard installation is creating new configs for listener for each instance.
    I would recommend to use one listener per each instance.
    YOU CAN NOT HAVE one port number for two differnet systems!
    If you want to use one listener than you must adapt tnsnames.ora, listener.ora and ensure that both systems will use different port numbers.
    For example PORT= 15<system number>
    Peter

  • Configure listener in client machine

    hello guys, please any help on how to configure listener on client machine??
    any link i can read or tutorial i'll be thankfull

    Hi,
    This question may be more appropriate for the Installation forum. However, the short answer is that you do not need a listener on any client machine, only on a server machine. Good luck!

  • IAS 10.1.2-how to configure different oc4j listen to different virtualhost?

    Hi
    I have requirement,
    we have oracle portal based web site that can be used by outside users over the internet.
    And then we have are deploying few new apps/webservices/ear files on a oc4j called core_ws. These web services should not be accessed outside.
    I have created a virtaul host in apache on a different port(7799) which was not exposed to public world.
    But, how to configure core_ws to inform Apache to listen on only port 7799 but not on port 80?
    I tried a diffent route to attack the problem(as mentioned below) which managmenet did not like:
    created location directive, worked in dev but not in production as there ISA sitting front of apache.
    We could apply filter on the URLs of these web services in ISA but my director did not like the idea as each time there is additional web service we have mess with it.
    So, he prefers running these web services on a different port that will not have access to public.
    Appreciate your help if have acheived the same earlier.

    By your description, it sounds like you want to do what is in this My Oracle Support document:
    How To Create Virtual Host Specific OC4J Applications (Doc ID 389819.1)
    https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=389819.1
    (requires login)
    You said you were using 10.1.2, so that will work, its a method of creating separate virtualhosts and using rewrites to direct to error pages if an incorrect request is made. For 10.1.3, but there is a dynamic method which is a better approach.
    ...Ken

  • How to configure multiple listeners to listen for the same instance.

    Hello everyone,
    I am running oracle database 11g and I want information regarding how to configure multiple listeners to listen for the same database instance. Actually I know how to configure more than one listener but the main thing that I am confused about is when we create listener.ora file, do we have to statically register the database instance with both the listeners or the instance will register itself with both the listeners.
    According to my knowledge the instance will register with the listener specified by LOCAL_LISTENER parameter and we cannot have more than one value for this parameter.
    Please only give detailed answers with example as I am tired of simple answers with details that I already know.

    Hello,
    Yes, it can make sense to have several listener for one Oracle instance. For instance you may have one listener for the applications another listener for DBA administration tasks as well as one listener dedicated to dataguard broker. It is not possible to have several listeners listening on the same IP and Port.
    By default the database try to automatically register to a listener on port 1521. To instruct the instance to register to a specifc list of listeners you can add in the init.ora the local_listener parameter with an alias definition:
    i.e
    local_listener=MY_SET_OFF_LISTENERS
    in your tnsname.ora add an entry called:
    MY_SET_OFF_LISTENERS_LOCAL= (ADDRESS_LIST=
    (ADRESS=(PROTOCOL=TCP)(HOST=myhostname)(PORT=1530))
    (ADRESS=(PROTOCOL=TCP)(HOST=myhostname)(PORT=1531))
    (ADRESS=(PROTOCOL=TCP)(HOST=myhostname)(PORT=1532))
    In this sample your instance will register to three listeners listening on respectively port 1530, 1531 and 1532
    If you want your clients can be balanced over the 3 listeners

  • How to configure Oracle 10g RAC on windown sever 2003

    hi all
    plz tell me
    how to configure Oracle 10g RAC on windown sever 2003 can any body help me , give be any link
    plz it is very necessary for me
    Regards

    Hello,
    There are a good doc written by Philip Newlan at www.jobcestbon.com/oracle/RacOnWindows.pdf
    Regards,
    Rodrigo Mufalani
    http://mufalani.blogspot.com

  • How to configure ebz 12.1.3 after upgrade db 11.2.0.2

    Hello all,
    currently i have upgraded database 11.1.0.7 to 11.2.0.2
    my application version = 12.1.3
    My Question:
    1. How to configure the application post upgrade ... like creating db context file from new db home
    2. I tried to run AD_TOP/bin perl admkappsutil.pl script to generate the appsutil folder but its not generated the scripts folder (start db & stop db) the following folder are created
    drwxrwxr-x 2 oracle oinstall 4096 Jan 30 20:56 bin
    drwxrwxr-x 3 oracle oinstall 4096 Jan 30 20:56 html
    drwxrwxr-x 3 oracle oinstall 4096 Jan 30 20:56 java
    drwxrwxr-x 2 oracle oinstall 4096 Jan 30 20:56 media
    drwxrwxr-x 4 oracle oinstall 4096 Jan 25 20:58 perl
    drwxrwxr-x 2 oracle oinstall 4096 Jan 30 20:56 sql
    drwxrwxr-x 2 oracle oinstall 4096 Jan 30 20:56 template
    3.please suggest me how to connect with upgraded database 11.2.0.2 with apps 12.1.3
    Thanks a lot
    Thanks & regd
    Suresh
    Edited by: Suresh on Jan 30, 2012 9:52 PM

    1. How to configure the application post upgrade ... like creating db context file from new db home If you want to upgrade to 11.2.0.2, please refer to (Interoperability Notes Oracle EBS R12 with Oracle Database 11gR2 (11.2.0.2) [ID 1367644.1]).
    If you want to upgrade to 11.2.0.3, please refer to (Interoperability Notes EBS R12 with Database 11gR2 [ID 1058763.1]).
    2. I tried to run AD_TOP/bin perl admkappsutil.pl script to generate the appsutil folder but its not generated the scripts folder (start db & stop db) the following folder are created How To Recreate the /appsutil/scripts/ directory [ID 377495.1]
    3.please suggest me how to connect with upgraded database 11.2.0.2 with apps 12.1.3Please see the docs referenced above.
    Thanks,
    Hussein

  • HT4527 While upgrading my operating system to Windows 7, I backed up everything on external drive.  However the drive is corrupt and lost my music.  Since I have an iPhone I had the music there as well, I synced it and it erased everything. How can I get

    While upgrading to Windows 7, I backed up everything on a external drive; it became corrupt so I could not access my music library for iTunes.  However, I had my music on my iPhone as well so I assumed it will sync.  It did sync but not the way I thought, so I lost years of music and favorite uploaded CDs.  How can I recover it?  I lknow you can acess iTunes from 4 computers so the database is there somewhere.  Unfortunately all I was able to recover is the music purchased from iTunes directly.  It makes me wonder about the iCloud product; if I cannot find my music what is my incentive to buy iCloud?  It seems like they are starting to charge for something that they provided before freely, then messed up the updates and software so that we need to pay for this service now.

    iCloud never stored music. That is what the iTunes Match service is for.
    The only way to get back non-iTunes-purchased music is to import them to your new iTunes library however you did it on your old computer.

  • How to configure multiple databases in single listener

    Hi,
    I want to configure upto 8 standby databases in a server. But I do not know how to configure multiple databases within the listener.
    Also can I use the same port number for all the databases.
    please give your suggestions.
    thankyou
    satyanag

    Please check (http://download.oracle.com/docs/cd/B10501_01/network.920/a96580/toc.htm)
    Jonathan Ferreira
    http://oracle4dbas.blogspot.com

Maybe you are looking for

  • How to enable syntax highlighting for jspf files on Dreamweaver CS5.5 on Mac

    I ran into an issue where I couldn't get the color coding (color coding style) for java server pages fragments (.jspf) files to show syntax highliting. I followed the adobe instructions on Changing and adding file extensions recognized by Dreamweaver

  • Getting the runtime environment to see packages in the jre/lib/ext dir

    I've downloaded mysql-connector-java-3.0.6-stable-bin.jar so that i can connect to a mysql database. I can use it fine from tomcat, but when I try and write stand alone stuff I get java.lang.ClassNotFoundException: com.mysql.jdbc.Driver at java.net.U

  • How to turn off phone?

    is there another way to turn off the phone besides holding down the lock button at the top? for some reason that button stopped working.

  • Siebel 7.8 siteminder 12 can be sso and integrate?

    Hi guys: Can siebel 7.8 and siteminder r12 be integrate ? I've read the <Policy Server Configuration Guide r12.0 SP2> <CA ETRUST SITEMINDER SSO AGENT VERSION 5.6 INTEGRATION WITH SIEBEL CRM RELEASE 7.8> and other write book,there is no exactly explai

  • IPhoto Book...won't let me order!!

    I'm trying to buy a book I made...get the message that there is an empty frame that needs to be filled or change layout.  I have checked and rechecked...there is no empty frame!  What do I do?  It won't let me order the book with this block...