RAC - lsnrctl 12541 "error"

Hello, I'm having a strange problem with the listeners in a 2 node (eosgospdba01 and eosgospdba02) configuration.
ps -ef | grep LIST on eosgospdba01 returns:
oracle 29420 1 0 Sep23 ? 00:00:00 /opt/oracle/product/10.2.0/db/bin/tnslsnr LISTENER_EOSGOSPDBA01 -inherit
ps -ef | grep LIST on eosgospdba02 returns:
oracle 615 1 0 Sep23 ? 00:00:00 /opt/oracle/product/10.2.0/db/bin/tnslsnr LISTENER_EOSGOSPDBA02 -inherit
lsnrctl status on eosgospdba01 returns:
Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
STATUS of the LISTENER
Alias LISTENER_EOSGOSPDBA01
lsnrctl status on eosgospdba02 returns:
Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
TNS-12541: TNS:no listener
TNS-12560: TNS:protocol adapter error
TNS-00511: No listener
lsnrctl status LISTENER_EOSGOSPDBA01 on eosgospdba01 returns:
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=pdba01-vip)(PORT=1521)(IP=FIRST)))
STATUS of the LISTENER
Alias LISTENER_EOSGOSPDBA01
lsnrctl status LISTENER_EOSGOSPDBA02 on eosgospdba02 returns:
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=pdba02-vip)(PORT=1521)(IP=FIRST)))
STATUS of the LISTENER
Alias LISTENER_EOSGOSPDBA02
listener.ora on esogospdba01 contains:
SID_LIST_LISTENER_EOSGOSPDBA01 =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /opt/oracle/product/10.2.0/db)
(PROGRAM = extproc)
LISTENER_EOSGOSPDBA01 =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = pdba01-vip)(PORT = 1521)(IP = FIRST))
(ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)(IP = FIRST))
listener.ora on esogospdba01 contains:
SID_LIST_LISTENER_EOSGOSPDBA02 =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /opt/oracle/product/10.2.0/db)
(PROGRAM = extproc)
LISTENER_EOSGOSPDBA02 =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = pdba02-vip)(PORT = 1521)(IP = FIRST))
(ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)(IP = FIRST))
I hope that someone can throw some light onto this problem, because I have to stop and start the listener on eosgospdba02 to make dbca work correctly.
Thanks in advance
Henrik
Edited by: user1734453 on 2008-09-25 02:09

These do not look like fully formed .ora files from a 10gR2 RAC cluster to me. Take a look at the demo entries here:
http://www.psoug.org/reference/rac.html
If Oracle is telling you there is no listener then there is no listener that corresponds with the ORACLE_HOME and ORACLE_SID in the environment.
Start there and then enable tracing.
Your sqlnet.ora file should like contain an entry similar to the following until you debug the problem:
TNSPING.TRACE_LEVEL=admin
TNSPING.TRACE_DIRECTORY=<a file system directory path and name>

Similar Messages

  • Lsnrctl status errors

    I get the following, what's wrong?:
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 18-FEB-2007 11:11:29
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=elvberg.com)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused

    Hi ,
    Is there any firewall activated.....("Linux Error: 111: Connection refused "). If so , configure it .... accordingly.....Refer to the on-line Oracle doc...
    Regards,
    Simon

  • ORA-12541 error with php

    Hi everybody,
    I'm a Thai web developer, this is my first time for using Orcle.
    Now I run Oracle 10g on WinXP pro and I want to develop PHP web application with Oracle.
    I just set up Oracle and config my iis + php to support Oracle yesterday, Today I try to connect to Orcle it's still error with error ORA-12541: no listener
    I search for solve this problem, I found "starting listener by command-line" via http://www.orafaq.com/faq/Middleware/SQLNet/faq372.htm with lsnrctl start [listener name]
    I can not start my listener with this stuff It's still error
    Message 1070 not found; No message file for product=NETWORK, facility=TNSTNS-125
    57: Message 12557 not found; No message file for product=NETWORK, facility=TNS
    TNS-12560: Message 12560 not found; No message file for product=NETWORK, facili
    ty=TNS
    TNS-00527: Message 527 not found; No message file for product=NETWORK, facilit
    y=TNS
    I run all stuff in my local computer on WinXP (IIS + PHP + Oracle)
    How I solve this error?
    Sorry about my english
    Best regards,
    Sheroku

    Hi,
    Typically when you get "Message xxxx not found: ..." error messages when trying to start the listener, it means that your ORACLE_HOME is not properly set.
    The walkthrough is to set the ORACLE_HOME at envionment level just before using the command, and maybe also as a system environment parameter.C:\>ECHO %ORACLE_HOME%
    %ORACLE_HOME%
    C:\>SET ORACLE_HOME=C:\NOWHERE!
    C:\>ECHO %ORACLE_HOME%
    C:\NOWHERE!
    C:\>lsnrctl start
    LSNRCTL for 32-bit Windows: Version 10.1.0.4.0 - Production on 15-SEP-2005 12:23:45
    Copyright (c) 1991, 2004, Oracle.  All rights reserved.
    Message 1070 not found; No message file for product=NETWORK, facility=TNSTNS-12557: Message 12557 not found; No message file for product=NETWORK, facility=TNS
    TNS-12560: Message 12560 not found; No message file for product=NETWORK, facility=TNS
      TNS-00527: Message 527 not found; No message file for product=NETWORK, facility=TNS
    C:\>SET ORACLE_HOME=C:\oracle\ora10g
    C:\>lsnrctl start
    LSNRCTL for 32-bit Windows: Version 10.1.0.4.0 - Production on 15-SEPT.-2005 12:24:02
    Copyright (c) 1991, 2004, Oracle.  All rights reserved.
    Lancement de tnslsnr: Veuillez patienter...
    TNSLSNR for 32-bit Windows: Version 10.1.0.4.0 - Production
    Le fichier de ...
    La commande a réussi"La commande a réussi" = "Command successful"
    And don't worry about bad English, we don't speak well either.
    Regards,
    Yoann.

  • Oracle 10gr2 rac, ora-12545 error when configured in shared server mode

    Hi i have fresh installation on two node rac on linux, with oracle 10gr2. It is running successfully, when i configure it in shared server mode and try to connect from client it gives error ora_12545:
    I have referred the oracle metalink notes and configured the local_listener as well as the remote_listener,
    still it is giving the error. I am able to tnsping all the entries on tnsnames.ora,
    i m also able to ping the hostnames,
    It connects most of the times succeessfully but some times it gives the error.
    how to solve this problem,
    please help me

    Basically this error means you misspelled the hostname or typed a wrong IP Address.
    Oracle Error :: TNS-12545+
    Connect failed because target host or object does not exist
    Cause
    The address specified is not valid, or the program being connected to does not exist.
    Action
    Ensure the ADDRESS parameters have been entered correctly; the most likely incorrect parameter is the node name. Ensure that the executable for the server exists (perhaps "oracle" is missing.) If the protocol is TCP/IP, edit the TNSNAMES.ORA file to change the host name to a numeric IP address and try again.
    I suggest you to check the dispatcher instance parameter.
    ~ Madrid
    http://hrivera99.blogspot.com

  • RMAN backup in RAC failing with error ORA-19566

    Hi all, i have 2 node RAC and i am trying to take rman backup of the database which is in ASM filesystem.
    There is a corruption in SYSAUX file and rman is failing to take backup of the sysaux datafile and error thrown at the end like
    piece handle=/home/oracle/orabackup/BLOOM_LVL0_20120627_1qnejueh_s58_p1 tag=TAG20120627T185538 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:56
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 06/27/2012 18:56:17
    *ORA-19566: exceeded limit of 0 corrupt blocks for file +DATA/bloom/datafile/sysaux.257.775475317*
    Then i tried to validate the backup in rman of the datafile sysaux nad fired the following query
    SQL> SELECT * FROM v$database_block_corruption;
    FILE# BLOCK# BLOCKS CORRUPTION_CHANGE# CORRUPTIO
    3 32011 1 0 ALL ZERO
    3 32049 40 0 ALL ZERO
    3 32034 1 0 ALL ZERO
    3 28964 1 1399837 LOGICAL
    3 32015 2 0 ALL ZERO
    and found all the blocks in the table WRH$_SQL_PLAN.
    Then dropped the table, and tried to take backup of the database and it is failing again with the same error..
    ANY SOLUTION TO TAKE BACKUP OF THE DATABASE.
    anyhow we can SET MAXCORRUPT FOR DATAFILE 3 to value, but does this works all time...
    Thanks in advance,
    TEJAS

    Both are good suggestions, but
    Osama-mustafa wrote:
    RMAN> blockrecover datafile 5 block 2684; -- Fix Eror That ship has already sailed:
    TEJAS_DBA wrote:
    And Yes this is the first time i am taking backup on the database.And:
    Osama-mustafa wrote:
    Or Skip Option
    Like
    RMAN> RUN{
    2> SET MAXCORRUPT FOR DATAFILE 1,3 to 1;
    3> BACKUP DATABASE;
    4> }The OP was aware of this option and hopefully was able to get at least some sort of a backup eventually. But as for the dropped WRH$_SQL_PLAN, TEJAS is, I will use the word "braver" than most. And as often is the case, Dan Morgan offered the only bit of sensible advise.
    Open an SR.
    Good luck.

  • Install RAC 11g2 : DBCA error with listener

    I get this error while create database with DBCA in RAC 11g2 installation.
    ORA-00119: invalid specification for system parameter REMOTE_LISTENER
    ORA-00132: syntax error or unresolved network name 'rac-scan.edu.vn:1521'
    My scan listener :
    [oracle@vm01 admin]$ srvctl config scan_listener
    SCAN Listener LISTENER_SCAN1 exists. Port: TCP:1521
    SCAN Listener LISTENER_SCAN2 exists. Port: TCP:1521
    [oracle@vm01 admin]$ srvctl status scan_listener
    SCAN Listener LISTENER_SCAN1 is enabled
    SCAN listener LISTENER_SCAN1 is running on node vm02
    SCAN Listener LISTENER_SCAN2 is enabled
    SCAN listener LISTENER_SCAN2 is running on node vm01
    [oracle@vm01 admin]$ srvctl status scan
    SCAN VIP scan1 is enabled
    SCAN VIP scan1 is running on node vm02
    SCAN VIP scan2 is enabled
    SCAN VIP scan2 is running on node vm01
    [oracle@vm01 admin]$ srvctl config scan
    SCAN name: rac-scan.edu.vn, Network: 1/10.10.10.0/255.255.255.0/eth2
    SCAN VIP name: scan1, IP: /rac-scan.edu.vn/10.10.10.250
    SCAN VIP name: scan2, IP: /rac-scan.edu.vn/10.10.10.251
    So thanks
    Chuong

    I've had a very similar problem with DBCA and creation of an 11.2.0.3 database and this ORA-00119:Invalid specification for system parameter REMOTE_LISTENER ORA-00132: syntax error or unresolved network name 'orapscan:1521'.
    The solution to my problem was that on the host (a production host) that I was trying to execute DBCA from if I did a 'tnsping orapscan' it did not resolve.
    On our development host a 'tnsping oradscan' (oradscan is the scan equivalent in dev for our production equivalent orapscan) it resolves ok.
    ie.
    13:22:15[oracle@euxq10 [eu11d] ~]$tnsping oradscan
    TNS Ping Utility for Linux: Version 11.2.0.3.0 - Production on 08-APR-2013 13:22:20
    Copyright (c) 1997, 2011, Oracle. All rights reserved.
    Used parameter files:
    /apps/oracle/network/sqlnet.ora
    Used EZCONNECT adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=))(ADDRESS=(PROTOCOL=TCP)(HOST=10.3.55.34)(POR..... etc.....
    In this case, it is resolved from EZCONNECT.
    This then led us to look at the sqlnet.ora on both our development and production environments, and this is where we found a difference.
    In our development environment in sqlnet.ora, we had -
    NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES, EZCONNECT)
    But in our production environment in sqlnet.ora we had -
    NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES)
    Thus when we changed our sqlnet.ora in our production environment to include EZCONNECT - ie.
    NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES, EZCONNECT)
    Then when we retried the DBCA create, we did not receive this ORA-00119 / ORA-00132 error with parameter REMOTE_LISTENER.
    Anyway, this was the solution to my problem. Hope it helps others.
    Regards,
    Roger

  • Rac 11gr2 installation error

    Hi all
    I installing RAC 11gr2 in VMWARE 9. Most of the part went smooth except i cannot ping between nodes. It says destination host is unreachable. I tried many different way but in vain, I will appreciate your help and feedback.
    [root@RAC1 ~]# ifconfig
    eth0      Link encap:Ethernet  HWaddr 00:0C:29:C9:96:58 
              inet addr:192.168.1.107  Bcast:192.168.1.255  Mask:255.255.255.0
              inet6 addr: 2002:4572:156:1234:20c:29ff:fec9:9658/64 Scope:Global
              inet6 addr: fe80::20c:29ff:fec9:9658/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:3733 errors:0 dropped:0 overruns:0 frame:0
              TX packets:277 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:363522 (355.0 KiB)  TX bytes:27989 (27.3 KiB)
    eth1      Link encap:Ethernet  HWaddr 00:0C:29:C9:96:62 
              inet addr:192.168.2.101  Bcast:192.168.2.255  Mask:255.255.255.0
              inet6 addr: fe80::20c:29ff:fec9:9662/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:19 errors:0 dropped:0 overruns:0 frame:0
              TX packets:67 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:1612 (1.5 KiB)  TX bytes:6253 (6.1 KiB)
    lo        Link encap:Local Loopback 
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:39 errors:0 dropped:0 overruns:0 frame:0
              TX packets:39 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:3336 (3.2 KiB)  TX bytes:3336 (3.2 KiB)
    [root@RAC1 ~]#
    RAC2 is below
    [root@RAC2 ~]# ifconfig
    eth0      Link encap:Ethernet  HWaddr 00:0C:29:E4:6A:B2 
              inet addr:192.168.1.102  Bcast:192.168.1.255  Mask:255.255.255.0
              inet6 addr: fe80::20c:29ff:fee4:6ab2/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:365 errors:0 dropped:0 overruns:0 frame:0
              TX packets:275 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:36438 (35.5 KiB)  TX bytes:21619 (21.1 KiB)
    eth1      Link encap:Ethernet  HWaddr 00:0C:29:E4:6A:A8 
              inet addr:192.168.2.102  Bcast:192.168.2.255  Mask:255.255.255.0
              inet6 addr: 2002:4572:156:1234:20c:29ff:fee4:6aa8/64 Scope:Global
              inet6 addr: fe80::20c:29ff:fee4:6aa8/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:650 errors:0 dropped:0 overruns:0 frame:0
              TX packets:54 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:69737 (68.1 KiB)  TX bytes:6474 (6.3 KiB)
    lo        Link encap:Local Loopback 
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:134 errors:0 dropped:0 overruns:0 frame:0
              TX packets:134 e[root@RAC1 ~]# ping RAC2 -c1
    PING RAC2.localdomain (192.168.1.102) 56(84) bytes of data.
    From 192.168.1.107 icmp_seq=1 Destination Host Unreachable
    --- RAC2.localdomain ping statistics ---
    1 packets transmitted, 0 received, +1 errors, 100% packet loss, time 13018ms
    rrors:0 dropped:0 overruns:0 carrier:0
    [root@RAC2 ~]# ping RAC1 -c1
    PING RAC1.localdomain (192.168.1.101) 56(84) bytes of data.
    From RAC2.localdomain (192.168.1.102) icmp_seq=1 Destination Host Unreachable
    --- RAC1.localdomain ping statistics ---
    1 packets transmitted, 0 received, +1 errors, 100% packet loss, time 3007ms
              collisions:0 txqueuelen:0
              RX bytes:12624 (12.3 KiB)  TX bytes:12624 (12.3 KiB)
    ERROR:

    [root@RAC1 ~]# ping 192.168.1.102
    PING 192.168.1.102 (192.168.1.102) 56(84) bytes of data.
    From 192.168.1.107 icmp_seq=2 Destination Host Unreachable
    From 192.168.1.107 icmp_seq=3 Destination Host Unreachable
    From 192.168.1.107 icmp_seq=4 Destination Host Unreachable
    From 192.168.1.107 icmp_seq=6 Destination Host Unreachable
    From 192.168.1.107 icmp_seq=7 Destination Host Unreachable
    From 192.168.1.107 icmp_seq=8 Destination Host Unreachable
    ^GFrom 192.168.1.107 icmp_seq=10 Destination Host Unreachable
    From 192.168.1.107 icmp_seq=11 Destination Host Unreachable
    From 192.168.1.107 icmp_seq=12 Destination Host Unreachable
    ^Z
    [1]+  Stopped                 ping 192.168.1.102
    [root@RAC1 ~]# ping 192.168.2.102
    PING 192.168.2.102 (192.168.2.102) 56(84) bytes of data.
    From 192.168.2.101 icmp_seq=2 Destination Host Unreachable
    From 192.168.2.101 icmp_seq=3 Destination Host Unreachable
    From 192.168.2.101 icmp_seq=4 Destination Host Unreachable
    From 192.168.2.101 icmp_seq=6 Destination Host Unreachable
    From 192.168.2.101 icmp_seq=7 Destination Host Unreachable
    From 192.168.2.101 icmp_seq=8 Destination Host Unreachable
    From 192.168.2.101 icmp_seq=10 Destination Host Unreachable
    From 192.168.2.101 icmp_seq=11 Destination Host Unreachable
    From 192.168.2.101 icmp_seq=12 Destination Host Unreachable
    ^Z

  • RAC re-install error

    I have deleted everything in app/crs and app/oracle after uninstalling it throgh installer.
    But when i try to install the clusteware it gives the following error:
    Checking local Cluster Synchronization Services (CSS) status Error
    In details it says one of the node has already configured cluster services...
    from which file i have to remove this entry please help.
    Regards, Imran

    You can also refer previously discussed thread.
    Re: What are the post de installation steps for a RAC DB
    Regards,
    Sabdar Syed.

  • Lsnrctl status error from remote machine

    want to get "lsnrctl status" from redhat 5 machine through shell command.
    Error: "facility=TNSMessage 1020 not found; No message file for product=network,"
    while in putty it is executing properly.

    I remember a similar problem from incorrect oracle startup scripts that are still lurking around on the Internet. For instance, setting ORACLE_HOME and then connecting with su - ORACLE, hence resetting the environment variables and causing the problem. Sound familiar? If not, please post the exact details of what you are doing.

  • Ubuntu 5.10 - lsnrctl start error - TNS-12555

    Hi, hope you can help me with the following.
    I'm unable to start the listener with the default tnsnames.ora and listener.ora files installed under Ubuntu 5.10. A listing of the error, and files below.
    I am able to connect to sqlplus as system as long as I don't specify the sid. I am not able to access the database home page. However selecting dbms_xdb.gethttpport() does return a port number.
    Any help appreciated.
    chris@acute$ ./lsnrctl start
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 04-APR-2006 08:57:17
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Starting /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    System parameter file is /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/listener.ora
    Log messages written to /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/log/listener.log
    Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    TNS-12555: TNS:permission denied
    TNS-12560: TNS:protocol adapter error
      TNS-00525: Insufficient privilege for operation
       Linux Error: 1: Operation not permitted
    Listener failed to start. See the error message(s) above...
    chris@acute$ more ../network/admin/tnsnames.ora
    # tnsnames.ora Network Configuration File:
    XE =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = 10.1.1.2)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
        (CONNECT_DATA =
          (SID = PLSExtProc)
          (PRESENTATION = RO)
    chris@acute$ more ../network/admin/listener.ora
    # listener.ora Network Configuration File:
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = PLSExtProc)
          (ORACLE_HOME = /usr/lib/oracle/xe/app/oracle/product/10.2.0/server)
          (PROGRAM = extproc)
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
          (ADDRESS = (PROTOCOL = TCP)(HOST = 10.1.1.2)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    That appears to be the problem. Logging in as oracle solves the issue.
    On closer inspection it appears the $ORACLE_HOME/config/scripts/startdb.sh script does not start the listener with a prefix of su - oracle. This is probably an oversight as the stopall.sh script prefixes the listener stop call with su - oracle.
    However I would have thought this problem would be common to all Linux installs, or is it something odd for Ubuntu?
    Next the DB Home Page doesn't display, but I'll do some more research and post a separate message if necessary.
    Thanks for your help.
    CM.

  • RAC configuration shows error !

    Dear Friends,
    I try to configure RAC in oracle 10g using Vmware , where host machine is RHEL 5.0 and the guest machine is CentOS . I have to follow the following web pages :
    "http://www.oracle-base.com/articles/10g/OracleDB10gR2RACInstallationOnCentos4UsingVMware.php"
    I have to try the several times but each time I get error during runing the "VIPCA" script in the Second Node (RAC2) . It shows error :
    "CRS-215: could not start resource 'ora.rac1.ons' . Check the log file "u01/crs/oracle/product/10.2.0/crs/log/rac1/ora.rac1.ons.log" for more details ."
    The contents of the "u01/crs/oracle/product/10.2.0/crs/log/rac1/ora.rac1.ons.log" is :
    tail -100f u01/crs/oracle/product/10.2.0/crs/log/rac1/ora.rac1.ons.log :
    Oracle Database 10g CRS Release 10.2.0.1.0 Production Copyright 1996, 2005 Oracl e. All rights reserved.
    2009-04-22 17:52:32.466: [    RACG][3086945024] [13199][3086945024][ora.rac1.ons ]: Failed to get IP for localhost (2)
    Failed to get IP for localhost (2)
    Failed to get IP for localhost (2)
    onsctl: ons failed to start
    2009-04-22 17:52:32.467: [    RACG][3086945024] [13199][3086945024][ora.rac1.ons ]: clsrcexecut: env ORACLE_CONFIG_HOME=/u01/crs/oracle/product/10.2.0/crs
    2009-04-22 17:52:32.467: [    RACG][3086945024] [13199][3086945024][ora.rac1.ons ]: clsrcexecut: cmd = /u01/crs/oracle/product/10.2.0/crs/bin/racgeut -e USRORA _DEBUG=0 540 /u01/crs/oracle/product/10.2.0/crs/bin/onsctl start
    2009-04-22 17:52:32.467: [    RACG][3086945024] [13199][3086945024][ora.rac1.ons ]: clsrcexecut: rc = 1, time = 1.240s
    2009-04-22 17:52:32.691: [    RACG][3086945024] [13199][3086945024][ora.rac1.ons ]: Failed to get IP for localhost (2)
    ons is not running ...
    2009-04-22 17:52:32.704: [    RACG][3086945024] [13199][3086945024][ora.rac1.ons ]: clsrcexecut: env ORACLE_CONFIG_HOME=/u01/crs/oracle/product/10.2.0/crs
    2009-04-22 17:52:32.704: [    RACG][3086945024] [13199][3086945024][ora.rac1.ons ]: clsrcexecut: cmd = /u01/crs/oracle/product/10.2.0/crs/bin/racgeut -e USRORA _DEBUG=0 540 /u01/crs/oracle/product/10.2.0/crs/bin/onsctl ping
    2009-04-22 17:52:32.704: [    RACG][3086945024] [13199][3086945024][ora.rac1.ons ]: clsrcexecut: rc = 1, time = 0.230s
    2009-04-22 17:52:32.704: [    RACG][3086945024] [13199][3086945024][ora.rac1.ons ]: end for resource = ora.rac1.ons, action = start, status = 1, time = 1.510s
    2009-04-22 17:52:33.140: [    RACG][3086945024] [13249][3086945024][ora.rac1.ons ]: onsctl: shutting down ons daemon ...
    Failed to get IP for localhost (2)
    onsctl: shutdown of ons failed!
    2009-04-22 17:52:33.141: [    RACG][3086945024] [13249][3086945024][ora.rac1.ons ]: clsrcexecut: env ORACLE_CONFIG_HOME=/u01/crs/oracle/product/10.2.0/crs
    2009-04-22 17:52:33.141: [    RACG][3086945024] [13249][3086945024][ora.rac1.ons ]: clsrcexecut: cmd = /u01/crs/oracle/product/10.2.0/crs/bin/racgeut -e USRORA _DEBUG=0 540 /u01/crs/oracle/product/10.2.0/crs/bin/onsctl stop
    2009-04-22 17:52:33.141: [    RACG][3086945024] [13249][3086945024][ora.rac1.ons ]: clsrcexecut: rc = 2, time = 0.120s
    Would anybody plz tell me how can I resolve this problem ?

    Failed to get IP for localhost (2)
    onsctl: ons failed to startIs your hosts file configured properly as indicated?

  • RAC private  ip  error

    hi,
    i implemented rac on OEL4 and oracle 10g. here i am getting problem my cluster using private IP and my instance using Public ip how can i resolve this problem
    With Regards
    tmadugula

    What version? 10g is not a version it is a marketing label.
    select * from v$version;But assuming 10gR2 ... run the Cluster Verify tool and post the full output.
    How can we help you when all you write is "i am getting problem" and you don't tell us what the problem is? Should we guess?
    When you post the output ... tell us the details about your cache fusion interconnect solution.

  • Regarding the tns-12541 error in connecting to sql server from oracle

    i need to create a database link from oracle on windows box to sql server.I configured everything but when i am trying to tnsping the sqlserver
    it throws me an TNS12541 no listener error.
    The listner status is up and the listener works

    little confusion here, are you trying to tnsping sql server? tnsping is an Oracle utulity.
    To acces sql server from Oracle you may use Transparent Gateway for Microsoft SQL - http://download.oracle.com/docs/cd/B19306_01/gateways.102/b14270/ch3.htm#sthref66 and Heterogeneous Connectivity - http://download.oracle.com/docs/cd/B19306_01/server.102/b14232/intro.htm#sthref33
    Best regards.

  • Install RAC:ORA-15063 error while mount diskgroup

    I have two nodes(linux1,linux2),but when I run DBCA on the computer of linux2 to create database,occur ORA-15063 error ,the detail information:
    could not mount the diskgroup on remote node linux1 using connection service linux1:21521+ASM1.Ensure that the listener is running on this node and the asm istance is registered to the listener.receive follow errors:
    ORA-15032:NOT ALL ALTERATION PERFORMED
    ORA-15063:ASM DISCOVERED ON INSUFFICIENT NUMBER OF DISK FOR DISKGROUP "ORCL_DATA1"
    who can help me!!!
    thanks in advance;

    there are the two file of the config:
    /u01/app/oracle/product/10.2.0/db_1/dbs/init+ASM1.ora
    SPFILE='/u02/oradata/orcl/dbs/spfile+ASM.ora'
    /u02/oradata/orcl/dbs/spfile+ASM.ora
    .asm_diskgroups=''
    +ASM1.asm_diskgroups='ORCL_DATA1'#Manual Mount
    .asm_diskstring='ORCL:VOL*'
    .background_dump_dest='/u01/app/oracle/admin/+ASM/bdump'
    *.cluster_database=true
    *.core_dump_dest='/u01/app/oracle/admin/+ASM/cdump'
    +ASM1.instance_number=1
    +ASM2.instance_number=2
    *.instance_type='asm'
    *.large_pool_size=12M
    *.remote_login_passwordfile='exclusive'
    *.user_dump_dest='/u01/app/oracle/admin/+ASM/udump'

  • TNS-12520 when connecting via TCPS on 11gR2 RAC with SCAN Listener

    I am struck trying to implement TCPS on our Oracle RAC SCAN Listener.  I have added to our Oracle 12c systems, but not on a RAC with SCAN.
    I created a wallet and certificate on one of the nodes, and copied it to the node and created auto login on each node.  I exported the trust.jks and identity.jks, and loaded them in my test java program as the trust store and key stores.  I have added the wallet location to the listener tns and sql  ora files.
    When attempting a TCPS connection, the ssl handshake succeed, but the client reports error:
    ORA-12520, TNS:listener could not find available handler for requested type of server
    The nodes scan listener log reports the TNS error, listener_scan1/alert/log.xml, when the connection is using TCPS on port 2484:
    <msg time='2015-04-29T14:06:20.629-04:00' org_id='oracle' comp_id='tnslsnr'  type='UNKNOWN' level='16' host_id='dublr059vm.dub.usoh.ibm.com'  host_addr='9.55.59.45'>
    <txt>29-APR-2015 14:06:20 * (CONNECT_DATA=(CID=(PROGRAM=JDBC Thin Client)(HOST=__jdbc__)(USER=tcarlson))
    (SERVER=DEDICATED)(SERVICE_NAME=DUB11RAC)) * (ADDRESS=(PROTOCOL=tcps)(HOST=9.55.61.122)(PORT=46635)) *
    establish * DUB11RAC * 12520
    </txt>
    </msg>
    <msg time='2015-04-29T14:06:20.629-04:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='dublr059vm.dub.usoh.ibm.com'
    host_addr='9.55.59.45'>
    <txt>TNS-12520: TNS:listener could not find available handler for requested type of server
    </txt>
    </msg>
    A connection using TCP completes without error:
    <msg time='2015-04-29T14:42:02.588-04:00' org_id='oracle' comp_id='tnslsnr' type='UNKNOWN' level='16' host_id='dublr059vm.dub.usoh.ibm.com'  host_addr='9.55.59.45'>
    <txt>29-APR-2015 14:42:02 * (CONNECT_DATA=(CID=(PROGRAM=JDBC Thin Client)(HOST=__jdbc__)(USER=tcarlson))
    (SERVER=DEDICATED)(SERVICE_NAME=DUB11RAC)) * (ADDRESS=(PROTOCOL=tcp)(HOST=9.55.61.122)(PORT=41950)) *
    establish * DUB11RAC * 0
    </txt>
    </msg>
    The scan listener is configured for TCP on 1521 and TCPS on 2484
    [oracle@dublr059vm ~]$ srvctl status scan_listener
    SCAN Listener LISTENER_SCAN1 is enabled
    SCAN listener LISTENER_SCAN1 is running on node dublr060vm
    [oracle@dublr059vm ~]$ srvctl config scan_listener
    SCAN Listener LISTENER_SCAN1 exists. Port: TCP:1521/TCPS:2484
    The service, dub11rac is ready on both instances.
    [oracle@dublr060vm ~]$ lsnrctl stat LISTENER_SCAN1
    LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 30-APR-2015 11:45:18
    Copyright (c) 1991, 2013, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN1)))
    STATUS of the LISTENER
    Alias                     LISTENER_SCAN1
    Version                   TNSLSNR for Linux: Version 11.2.0.4.0 - Production
    Start Date                30-APR-2015 11:43:24
    Uptime                    0 days 0 hr. 1 min. 53 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/app/11.2.0/grid/network/admin/listener.ora
    Listener Log File         /u01/app/11.2.0/grid/log/diag/tnslsnr/dublr060vm/listener_scan1/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=LISTENER_SCAN1)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=9.55.59.47)(PORT=2484)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=9.55.59.47)(PORT=1521)))
    Services Summary...
    Service "dub11rac" has 2 instance(s).
      Instance "dub11rac1", status READY, has 1 handler(s) for this service...
      Instance "dub11rac2", status READY, has 1 handler(s) for this service...
    Service "dub11racXDB" has 2 instance(s).
      Instance "dub11rac1", status READY, has 1 handler(s) for this service...
      Instance "dub11rac2", status READY, has 1 handler(s) for this service...
    The command completed successfully

    Hi hitgon,
    Thanks first.
    The commands output are as the following:
    Command: srvctl status listener
    Output:
    # Listener LISTENER is enabled
    # Listener LISTENER is running on node(s): rac1,rac2
    Command: srvctl status scan_listener
    Output:
    # SCAN Listener LISTENER_SCAN1 is enabled
    # SCAN listener LISTENER_SCAN1 is running on node rac2
    # TNSNAMES.ORA
    RAC =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = rac-scan)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = rac.localdomain)
    Command: sqlplus username/passwd@rac-scan:1521/rac.localdomain
    Output:
    # ERROR:
    # ORA-12520: TNS:listener could not find available handler for requested type of server
    # Enter user-name:
    By the way, rac-scan is the host where the SCAN listener is running and rac.localdomain is the service name. I've also tried the following commands
    with the same error output:
    sqlplus username/passwd@RAC
    At last, i think the output of "lsnrctl status LISTENER_SCAN1" might help:
    Service "rac.localdomain" has 2 instance(s).
    Instance "rac1", status READY, has 1 handler(s) for this service...
    Instance "rac2", status READY, has 1 handler(s) for this service...
    Service "racXDB.localdomain" has 2 instance(s).
    Instance "rac1", status READY, has 1 handler(s) for this service...
    Instance "rac2", status READY, has 1 handler(s) for this service...

Maybe you are looking for

  • Connecting a 2nd monitor to my 27" iMac

    Hi All, I am looking to buy a 2nd monitor to go with my 27" 2.9 GHZ iMac (purchased May 2013) and wandered if anyone could provide some advice on the best way to connect it through a thunderbolt port and is there anything I must ensure the new monito

  • OBIEE Administrator: bug in Physical Layer import fo Sybase IQ?

    Hi! In OBIEE Administrator, in the Physical Layer, I defined a Database Object (as a Syabase IQ 12.7) and its connection pool for a Sybase IQ 12.6 Database. I created the ODBC driver (for Sybase IQ 12.5 and also tried with IQ 12.7 drivers) in Windows

  • Reader X does not print particular page

    Hi, all. Try to print first page of the document http://n4trb.com/AmateurRadio/SemiconductorHistory/GE_Tunnel_Diodes.pdf It will fail. But, this page can be printed by Nitro Reader. Still a lot to fix in acrobat reader though... WBR, Oleg.

  • Rectangle marquee tool is rounding at the edges, how to I revert to sharp edges?

    The rectangle marquee tool is rounding at the edges of my selections and when I try to fill with solid color, it fills very transparently and almost water-color like. I don't know how the settings were changed, but I need help reverting them back to

  • Can i order a macbook pro retina with a german keyboard?

    Hey, I'd like to know if it is possible to order a MacBook Pro with Retina display with a german keyboard? And if its possible is it only possible to buy it in the online store or can i pick it up at a retail store? Greetings Hannes