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.

Similar Messages

  • Lsnrctl start newlist, TNS-12560: TNS:protocol adapter error

    Hello I am using Windows 7. Oracle 11g R2. Firstly I created my directory C:\oracle\net. Then I created an entry for TNSADMIN in the windows registry entering the newly created c:\oracle\net.
    I ran Oracle Net Manager. The path C:\oracle\net is displayed in the title bar.
    Using Oracle Net Manager I created my listener with the following settings as saved to listener.ora in the C:\oracle\net directory
    # listener.ora Network Configuration File: C:\oracle\net\listener.ora
    # Generated by Oracle configuration tools.
    ADR_BASE_NEWLIST = C:\app\oracle\product\11.2.0\dbhome_2\log
    NEWLIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 2521))
    From the command line prompt I type ......
    lsnrctl start newlist
    The following is returned
    starting tnslnsr: please wait...
    followed by
    TNS-12560: TNS:protocol adapter error
    TNS-00530: TNS:protocol adapter error
    ??? How do I resolve this? thanks

    The above scenario is part of a learning exercise (ex6.1) from the chapter on configuring the Oracle Net Environment OCA Oracle Database 11g Administration I Exam Guide by John Watson from the Oracle Press series.
    127.0.0.1 is the loopback address of (all) local machines.
    This step is step 16 of the learning exercise. Until I resolve it I cannot complete the remaining steps!
    The steps of the exercise are as below..........................
    Configure Oracle Net
    In this exercise, you will set up a complete Oracle Net environment, using graphical
    and command-line tools. Where there are differences between Windows and Linux,
    these will be pointed out.
    1. Create a directory to be used for the Oracle Net configuration files, and set
    the TNS_ADMIN variable to point to this. It doesn’t matter where the direc-
    tory is, as long as the Oracle user has permission to create, read, and write it.
    On Linux:
    mkdir /u01/oracle/net
    export TNS_ADMIN=/u01/oracle/net
    Ensure that all work from now is done from a session where the variable has
    been set.
    On Windows:
    mkdir d:\oracle\net
    Create and set the key TNS_ADMIN as a string variable in the registry in
    the Oracle Home branch. This will typically be
    HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_OraDb1g_home1
    2. Check that the variable is being read by using the TNSPING command from
    an operating system prompt:
    tnsping orcl
    This will return an error “TNS-03505: Failed to resolve name” because there
    are no files in the TNS_ADMIN directory. On Windows, you may need to
    launch a new command prompt to pick up the new TNS_ADMIN value from
    the registry.
    3. Start the Net Manager. On Linux, run netmgr from an operating system
    prompt; on Windows, launch it from the Start menu. The top line of the Net
    Manager window will show the location of the Oracle Net files. If this is not
    the new directory, then the TNS_ADMIN variable has not been set correctly.
    4. Create a new listener: expand the Local branch of the navigation tree,
    highlight Listeners, and click the +.
    5. Enter a listener name, NEWLIST, and click OK.
    6. Click Add Address.
    7. For Address 1, choose TCP/IP as the protocol and enter 127.0.0.1 as the
    host, 2521 as the port. The illustration that follows shows the result.
    8. Create a new service name: highlight Service Naming in the navigation tree,
    and click the +.
    9. Enter NEW as the net service name, and click Next.
    10. Select TCP/IP as the protocol, and click Next.
    11. Enter 127.0.0.1 as the host name and 2521 as the port and click Next.
    12. Enter SERV1 as the Service Name, and click Next.
    13. Click Finish. If you try the test, it will fail at this time. The illustration that
    follows shows the result.
    14. Save the configuration by clicking File and Save Network Configuration.
    This will create the listener.ora and tnsnames.ora files in the
    TNS_ADMIN directory.
    15. Use an editor to check the two files. They will look like this:
    LISTENER.ORA:
    NEWLIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 2521))
    TNSNAMES.ora:
    NEW =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT =
    2521))
    (CONNECT_DATA =
    (SERVICE_NAME = SERV1)
    16. From an operating system prompt, start the listener with lsnrctl start
    newlist.
    17. From an operating system prompt, test the connect string with tnsping new.
    000
    18. Connect to your database using operating system authentication, bypassing
    any listener, with sqlplus / as sysdba.
    19. Set the service_names and local_listener parameters for the running
    instance (memory only, not the parameter file) and register the new service
    name with the new listener:
    alter system set service_names=serv1 scope=memory;
    alter system set local_listener=new scope=memory;
    alter system register;
    20. From an operating system prompt, confirm that the new service has registered
    with the new listener with lsnrctl services newlist.
    21. Confirm that the new network environment is functional by logging on:
    sqlplus system/oracle@new

  • Am unable to start the listener, it throws error# TNS-12560 and TNS-00583.

    $ lsnrctl start
    ---------------------------------------------------ERROR MESSAGE----------------------------
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 25-SEP-2011 00:01:50
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Starting /u01/app/oracle/product/10.2.0/db_1/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    System parameter file is /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Log messages written to /u01/app/oracle/product/10.2.0/db_1/network/log/listener.log
    Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost.localdomain)(PORT=1521)))
    TNS-12560: TNS:protocol adapter error
    TNS-00583: Valid node checking: unable to parse configuration parameters
    Listener failed to start. See the error message(s) above...
    am using two database 1)bullet 2)karthy where bullet db is target and karthy is catalog and my LISTENER ENTRY is
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = karthy)
    (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
    (global_name = karthy)
    (SID_DESC =
    (SID_NAME = bullet)
    (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
    (global_name = bullet)
    my TNS entry is
    tns_bull
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost.localdomain)(port=1521))
    (CONNECT_DATA =
    (server=dedicated)
    (service_name=karthy)
    kindly correct me where am gone wrong...

    ksk wrote:
    OS cmds
    $ cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1 localhost.localdomain localhost
    ::1 localhost6.localdomain6 localhost6
    Listener is connected so their is no error at that tailexcellent point.
    using localhost/127.0.0.1 means that no remote client can ever connect to listener/DB
    The upside is that your DB like mine can NEVER be hacked across the *NET!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Listener is not starting (TNS-12555: TNS:permission denied)

    Hello,
    I'm doing a fresh installation with Oracle 10g but I'm stuck in starting the listener (user oracle).
    I added
    TRACE_LEVEL_LISTENER = ADMIN
    to the listener.ora but I still only see "TNS-12555: TNS:permission denied" and I don't know where the permissions are missing.
    Below you'll find the command output of "lsnrctl start", the listener.ora, tnsnames.org and the tracelog-file listener.trc.
    Any hints?
    $ lsnrctl start
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 18-MAY-2011 14:34:24
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Starting /opt/oracle/product/10.2.0/db_1/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    System parameter file is /opt/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Log messages written to /opt/oracle/product/10.2.0/db_1/network/log/listener.log
    Trace information written to /opt/oracle/product/10.2.0/db_1/network/trace/listener.trc
    Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    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...
    $ cat listener.ora
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /opt/oracle/product/10.2.0/db_1)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = comas)
    (ORACLE_HOME = /opt/oracle/product/10.2.0/db_1)
    (SID_NAME = comas)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = accelrys-server)(PORT = 1521))
    TRACE_LEVEL_LISTENER = ADMIN
    $ cat tnsnames.ora
    COMAS =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = accelrys-server)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = comas)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    $ cat listener.trc
    TNSLSNR for Linux: Version 10.2.0.1.0 - Production on 18-MAY-2011 14:34:26
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    [18-MAY-2011 14:34:26:165] --- TRACE CONFIGURATION INFORMATION FOLLOWS ---
    [18-MAY-2011 14:34:26:165] New trace stream is /opt/oracle/product/10.2.0/db_1/network/trace/listener.trc
    [18-MAY-2011 14:34:26:165] New trace level is 6
    [18-MAY-2011 14:34:26:165] --- TRACE CONFIGURATION INFORMATION ENDS ---
    [18-MAY-2011 14:34:26:165] --- PARAMETER SOURCE INFORMATION FOLLOWS ---
    [18-MAY-2011 14:34:26:165] Attempted load of system pfile source /opt/oracle/product/10.2.0/db_1/network/admin/listener.ora
    [18-MAY-2011 14:34:26:165] Parameter source loaded successfully
    [18-MAY-2011 14:34:26:165]
    [18-MAY-2011 14:34:26:165] Attempted load of command line source
    [18-MAY-2011 14:34:26:165] Parameter source was not loaded
    [18-MAY-2011 14:34:26:165]
    [18-MAY-2011 14:34:26:165] -> PARAMETER TABLE LOAD RESULTS FOLLOW <-
    [18-MAY-2011 14:34:26:165] Successful parameter table load
    [18-MAY-2011 14:34:26:166] -> PARAMETER TABLE HAS THE FOLLOWING CONTENTS <-
    [18-MAY-2011 14:34:26:166] SID_LIST_LISTENER = (SID_LIST = (SID_DESC = (SID_NAME = PLSExtProc) (ORACLE_HOME = /opt/oracle/product/10.2.0/db_1) (PROGRAM = extproc) (SID_DESC = (GL
    OBAL_DBNAME = comas) (ORACLE_HOME = /opt/oracle/product/10.2.0/db_1) (SID_NAME = comas))))
    [18-MAY-2011 14:34:26:166] LISTENER = (DESCRIPTION_LIST = (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))) (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = accelrys-
    server)(PORT = 1521))))
    [18-MAY-2011 14:34:26:166] TRACE_LEVEL_LISTENER = ADMIN
    [18-MAY-2011 14:34:26:166] --- PARAMETER SOURCE INFORMATION ENDS ---
    [18-MAY-2011 14:34:26:166] --- LOG CONFIGURATION INFORMATION FOLLOWS ---
    [18-MAY-2011 14:34:26:166] Log stream will be "/opt/oracle/product/10.2.0/db_1/network/log/listener.log"
    [18-MAY-2011 14:34:26:166] Log stream validation requested
    [18-MAY-2011 14:34:26:166] Log stream is valid
    [18-MAY-2011 14:34:26:166] --- LOG CONFIGURATION INFORMATION ENDS ---
    [18-MAY-2011 14:34:26:166] nlstdipi: entry
    [18-MAY-2011 14:34:26:166] nlstdipi: exit
    [18-MAY-2011 14:34:26:166] nsglldprm: Resolved "INBOUND_CONNECT_TIMEOUT_LISTENER" to: 0
    [18-MAY-2011 14:34:26:166] nsglldprm: Resolved "STARTUP_WAIT_TIME_LISTENER" to: 0
    [18-MAY-2011 14:34:26:166] nsglldprm: LocalOSauth enabled
    [18-MAY-2011 14:34:26:166] snsgblini: exit
    [18-MAY-2011 14:34:26:167] nsinherit: doing connect handshake...
    [18-MAY-2011 14:34:26:167] nsc2addr: (ADDRESS=(PROTOCOL=beq))
    [18-MAY-2011 14:34:26:167] nlpcaini: entry
    [18-MAY-2011 14:34:26:167] nlpcaini: No process parameters set
    [18-MAY-2011 14:34:26:167] nlpcaini: exit
    [18-MAY-2011 14:34:26:167] nsinh_hoff: inheriting the connection...
    [18-MAY-2011 14:34:26:167] nsmal: 1144 bytes at 0x80afb80
    [18-MAY-2011 14:34:26:167] nsmal: 1992 bytes at 0x80bfd40
    [18-MAY-2011 14:34:26:167] nsmal: 168 bytes at 0x80c0690
    [18-MAY-2011 14:34:26:167] nsopen: opening transport...
    [18-MAY-2011 14:34:26:167] ntpcon: entry
    [18-MAY-2011 14:34:26:167] ntpcon: toc = 4
    [18-MAY-2011 14:34:26:168] ntpcon: NT layer IPC connection has been established.
    [18-MAY-2011 14:34:26:168] ntpcon: exit
    [18-MAY-2011 14:34:26:168] nsopen: transport is open
    [18-MAY-2011 14:34:26:168] nsoptions: lcl[0]=0x0, lcl[1]=0x10000000, gbl[0]=0x0, gbl[1]=0x0, cha=0x0
    [18-MAY-2011 14:34:26:168] nsoptions: lcl[0]=0xf4ffe9ff, lcl[1]=0x10000000, gbl[0]=0x7ebf, gbl[1]=0x0
    [18-MAY-2011 14:34:26:168] nsnainit: inherit
    [18-MAY-2011 14:34:26:168] nsnasvnainfo: NA disabled for this connection
    [18-MAY-2011 14:34:26:168] ntpctl: entry
    [18-MAY-2011 14:34:26:168] ntpctl: exit
    [18-MAY-2011 14:34:26:168] nainit: entry
    [18-MAY-2011 14:34:26:168] nagblini: entry
    [18-MAY-2011 14:34:26:168] nau_gin: entry
    [18-MAY-2011 14:34:26:168] nau_gparams: entry
    [18-MAY-2011 14:34:26:168] ntpcon: exit
    [18-MAY-2011 14:34:26:168] nsopen: transport is open
    [18-MAY-2011 14:34:26:168] nsoptions: lcl[0]=0x0, lcl[1]=0x10000000, gbl[0]=0x0, gbl[1]=0x0, cha=0x0
    [18-MAY-2011 14:34:26:168] nsoptions: lcl[0]=0xf4ffe9ff, lcl[1]=0x10000000, gbl[0]=0x7ebf, gbl[1]=0x0
    [18-MAY-2011 14:34:26:168] nsnainit: inherit
    [18-MAY-2011 14:34:26:168] nsnasvnainfo: NA disabled for this connection
    [18-MAY-2011 14:34:26:168] ntpctl: entry
    [18-MAY-2011 14:34:26:168] ntpctl: exit
    [18-MAY-2011 14:34:26:168] nainit: entry
    [18-MAY-2011 14:34:26:168] nagblini: entry
    [18-MAY-2011 14:34:26:168] nau_gin: entry
    [18-MAY-2011 14:34:26:168] nau_gparams: entry
    [18-MAY-2011 14:34:26:168] nam_gbp: Reading parameter "sqlnet.authentication_required" from parameter file
    [18-MAY-2011 14:34:26:168] nam_gbp: Parameter not found
    [18-MAY-2011 14:34:26:168] nau_gparams: Using default value "FALSE"
    [18-MAY-2011 14:34:26:168] nau_gslf: entry
    [18-MAY-2011 14:34:26:168] nam_gic: entry
    [18-MAY-2011 14:34:26:168] nam_gic: Counting # of items in "sqlnet.authentication_services" parameter
    [18-MAY-2011 14:34:26:168] nam_gic: Parameter not found
    [18-MAY-2011 14:34:26:168] nam_gic: Found 0 items
    [18-MAY-2011 14:34:26:168] nam_gic: exit
    [18-MAY-2011 14:34:26:168] nau_gslf: Using default value "all available adapters"
    [18-MAY-2011 14:34:26:168] nauss_set_state: entry
    [18-MAY-2011 14:34:26:168] nauss_set_state: exit
    [18-MAY-2011 14:34:26:168] nau_gslf: exit
    [18-MAY-2011 14:34:26:168] nau_gparams: exit
    [18-MAY-2011 14:34:26:168] nau_gin: exit
    [18-MAY-2011 14:34:26:168] nagblini: exit
    [18-MAY-2011 14:34:26:168] na_saveprot: entry
    [18-MAY-2011 14:34:26:168] na_saveprot: exit
    [18-MAY-2011 14:34:26:168] nacomin: entry
    [18-MAY-2011 14:34:26:168] nas_init: entry
    [18-MAY-2011 14:34:26:168] nas_init: exit
    [18-MAY-2011 14:34:26:168] nau_ini: entry
    [18-MAY-2011 14:34:26:168] naugcp_get_connect_parameters: entry
    [18-MAY-2011 14:34:26:168] nauss_set_state: entry
    [18-MAY-2011 14:34:26:168] nauss_set_state: exit
    [18-MAY-2011 14:34:26:168] naugcp_get_connect_parameters: exit
    [18-MAY-2011 14:34:26:168] nau_gettab: entry
    [18-MAY-2011 14:34:26:168] nau_gettab: exit
    [18-MAY-2011 14:34:26:168] nau_sini: entry
    [18-MAY-2011 14:34:26:168] nau_sini: exit
    [18-MAY-2011 14:34:26:168] nau_ini: exit
    [18-MAY-2011 14:34:26:168] naeeinit: entry
    [18-MAY-2011 14:34:26:168] nam_gbp: Reading parameter "SQLNET.FIPS_140" from parameter file
    [18-MAY-2011 14:34:26:168] nam_gbp: Parameter not found
    [18-MAY-2011 14:34:26:168] nam_gnsp: Reading parameter "SQLNET.ENCRYPTION_SERVER" from parameter file
    [18-MAY-2011 14:34:26:168] nam_gnsp: Parameter not found
    [18-MAY-2011 14:34:26:168] naequad: Using default value "ACCEPTED"
    [18-MAY-2011 14:34:26:168] nam_gic: entry
    [18-MAY-2011 14:34:26:168] nam_gic: Counting # of items in "SQLNET.ENCRYPTION_TYPES_SERVER" parameter
    [18-MAY-2011 14:34:26:168] nam_gic: Parameter not found
    [18-MAY-2011 14:34:26:168] nam_gic: exit
    [18-MAY-2011 14:34:26:168] naesno: Using default value "all available algorithms"
    [18-MAY-2011 14:34:26:168] naeshow: entry
    [18-MAY-2011 14:34:26:168] naeshow: exit
    [18-MAY-2011 14:34:26:168] naeeinit: exit
    [18-MAY-2011 14:34:26:168] naecinit: entry
    [18-MAY-2011 14:34:26:169] nam_gnsp: Reading parameter "SQLNET.CRYPTO_CHECKSUM_SERVER" from parameter file
    [18-MAY-2011 14:34:26:169] nam_gnsp: Parameter not found
    [18-MAY-2011 14:34:26:169] naequad: Using default value "ACCEPTED"
    [18-MAY-2011 14:34:26:169] nam_gic: entry
    [18-MAY-2011 14:34:26:169] nam_gic: Counting # of items in "SQLNET.CRYPTO_CHECKSUM_TYPES_SERVER" parameter
    [18-MAY-2011 14:34:26:169] nam_gic: Parameter not found
    [18-MAY-2011 14:34:26:169] nam_gic: exit
    [18-MAY-2011 14:34:26:169] naesno: Using default value "all available algorithms"
    [18-MAY-2011 14:34:26:169] naeshow: entry
    [18-MAY-2011 14:34:26:169] naeshow: exit
    [18-MAY-2011 14:34:26:169] naecinit: exit
    [18-MAY-2011 14:34:26:169] nadisc: entry
    [18-MAY-2011 14:34:26:169] nacomtm: entry
    [18-MAY-2011 14:34:26:169] nacompd: entry
    [18-MAY-2011 14:34:26:169] nacompd: exit
    [18-MAY-2011 14:34:26:169] nacompd: entry
    [18-MAY-2011 14:34:26:169] nacompd: exit
    [18-MAY-2011 14:34:26:169] nacomtm: exit
    [18-MAY-2011 14:34:26:169] nas_dis: entry
    [18-MAY-2011 14:34:26:169] nas_dis: exit
    [18-MAY-2011 14:34:26:169] nau_dis: entry
    [18-MAY-2011 14:34:26:169] nau_dis: exit
    [18-MAY-2011 14:34:26:169] naeetrm: entry
    [18-MAY-2011 14:34:26:169] naeetrm: exit
    [18-MAY-2011 14:34:26:169] naectrm: entry
    [18-MAY-2011 14:34:26:169] naectrm: exit
    [18-MAY-2011 14:34:26:169] nagbltrm: entry
    [18-MAY-2011 14:34:26:169] nau_gtm: entry
    [18-MAY-2011 14:34:26:169] nau_gtm: exit
    [18-MAY-2011 14:34:26:169] nagbltrm: exit
    [18-MAY-2011 14:34:26:169] nadisc: exit
    [18-MAY-2011 14:34:26:169] nainit: exit
    [18-MAY-2011 14:34:26:169] nsnainit: NS Connection version: 313
    [18-MAY-2011 14:34:26:169] nsnainit: inf->nsinfflg[0]: 0xd inf->nsinfflg[1]: 0xd
    [18-MAY-2011 14:34:26:169] nsnainit: "or" info flags: 0xd Translations follow:
    native service(s) is (are) wanted
    NA disabled remotely for this connection
    NA services unavailable on both processes - negotiation not needed
    [18-MAY-2011 14:34:26:169] nsnainit: "or" info flags: 0xd Translations follow:
    native service(s) is (are) wanted
    NA disabled remotely for this connection
    NA services unavailable on both processes - negotiation not needed
    "and" info flags: 0xd Translations follow:
    native service(s) is (are) wanted
    NA disabled remotely for this connection
    NA services unavailable on both processes - negotiation not needed
    [18-MAY-2011 14:34:26:169] nsopen: global context check-in (to slot 0) complete
    [18-MAY-2011 14:34:26:169] nsopen: lcl[0]=0xf4ffe9ff, lcl[1]=0x10000000, gbl[0]=0x7ebf, gbl[1]=0x0, tdu=4096, sdu=2048
    [18-MAY-2011 14:34:26:169] nsdo: cid=0, opcode=65, bl=0, what=0, uflgs=0x0, cflgs=0x2
    [18-MAY-2011 14:34:26:169] nsdo: rank=64, nsctxrnk=0
    [18-MAY-2011 14:34:26:169] nsdo: nsctx: state=7, flg=0x4000, mvd=0
    [18-MAY-2011 14:34:26:169] nsmal: 168 bytes at 0x80c1760
    [18-MAY-2011 14:34:26:169] nsmal: 168 bytes at 0x80c2030
    [18-MAY-2011 14:34:26:169] nsdo: nsctxrnk=0
    [18-MAY-2011 14:34:26:169] nsdo: cid=0, opcode=68, bl=0, what=8, uflgs=0x0, cflgs=0x3
    [18-MAY-2011 14:34:26:169] nsdo: rank=64, nsctxrnk=0
    [18-MAY-2011 14:34:26:169] nsdo: nsctx: state=14, flg=0x4004, mvd=0
    [18-MAY-2011 14:34:26:169] nsdo: gtn=10, gtc=10, ptn=10, ptc=2047
    [18-MAY-2011 14:34:26:169] nscon: doing connect handshake...
    [18-MAY-2011 14:34:26:169] nscon: recving a packet
    [18-MAY-2011 14:34:26:169] nsprecv: reading from transport...
    [18-MAY-2011 14:34:26:169] ntprd: entry
    [18-MAY-2011 14:34:26:169] ntprd: exit
    [18-MAY-2011 14:34:26:169] nsprecv: 188 bytes from transport
    [18-MAY-2011 14:34:26:169] nsprecv: tlen=188, plen=188, type=1
    [18-MAY-2011 14:34:26:169] nscon: got NSPTCN packet
    [18-MAY-2011 14:34:26:169] nsconneg: vsn=313, lov=300, opt=0x0, sdu=2048, tdu=4096, ntc=0x4f98
    [18-MAY-2011 14:34:26:169] nsconneg: vsn=313, gbl=0x0, sdu=2048, tdu=4096
    [18-MAY-2011 14:34:26:169] nsmal: 130 bytes at 0x80c2900
    [18-MAY-2011 14:34:26:169] nscon: got 130 bytes connect data
    [18-MAY-2011 14:34:26:169] nsmfr: 130 bytes at 0x80c2900
    [18-MAY-2011 14:34:26:169] nscon: discarding connect data (130 bytes)
    [18-MAY-2011 14:34:26:169] nsdo: nsctxrnk=0
    [18-MAY-2011 14:34:26:169] nsinh_hoff: connection inherited
    [18-MAY-2011 14:34:26:169] nsinherit: connected
    [18-MAY-2011 14:34:26:169] nsglma: entry
    [18-MAY-2011 14:34:26:170] nsglma: Listener's pid=10501
    [18-MAY-2011 14:34:26:170] nladini: entry
    [18-MAY-2011 14:34:26:170] nladini: exit
    [18-MAY-2011 14:34:26:170] nladget: entry
    [18-MAY-2011 14:34:26:170] nladget: exit
    [18-MAY-2011 14:34:26:170] nsgllsn: LSNDSC==>(DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    [18-MAY-2011 14:34:26:170] nsglhcrt: entry
    [18-MAY-2011 14:34:26:171] nsglhcrt: exit
    [18-MAY-2011 14:34:26:171] nsglbgetRSPidx: entry
    [18-MAY-2011 14:34:26:171] nladini: entry
    [18-MAY-2011 14:34:26:171] nladini: exit
    [18-MAY-2011 14:34:26:171] nladget: entry
    [18-MAY-2011 14:34:26:171] nladget: exit
    [18-MAY-2011 14:34:26:171] nsglbn2i: entry
    [18-MAY-2011 14:34:26:171] nsglbn2i: exit
    [18-MAY-2011 14:34:26:171] nladtrm: entry
    [18-MAY-2011 14:34:26:171] nladtrm: exit
    [18-MAY-2011 14:34:26:171] nsglbgetRSPidx: returning ecode=0
    [18-MAY-2011 14:34:26:171] nsglbgetRSPidx: exit
    [18-MAY-2011 14:34:26:171] nsc2addr: (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    [18-MAY-2011 14:34:26:171] sntuscrt: entry
    [18-MAY-2011 14:34:26:171] sntuscrt: exit
    [18-MAY-2011 14:34:26:171] ntusb2adr: entry
    [18-MAY-2011 14:34:26:171] ntusb2adr: KEY = EXTPROC1
    [18-MAY-2011 14:34:26:171] ntusb2adr: exit
    [18-MAY-2011 14:34:26:171] nsmal: 1144 bytes at 0x80c5850
    [18-MAY-2011 14:34:26:171] nsmal: 1992 bytes at 0x80c5cd0
    [18-MAY-2011 14:34:26:171] nsmal: 168 bytes at 0x80c5730
    [18-MAY-2011 14:34:26:171] ntusconn: entry
    [18-MAY-2011 14:34:26:171] ntusconn: connect: operation 6
    [18-MAY-2011 14:34:26:171] ntuscnp: entry
    [18-MAY-2011 14:34:26:171] ntuscnp: exit
    [18-MAY-2011 14:34:26:171] ntusconn: exit
    [18-MAY-2011 14:34:26:171] nsopen: opening transport...
    [18-MAY-2011 14:34:26:171] ntusconn: entry
    [18-MAY-2011 14:34:26:171] ntusconn: connect: operation 2
    [18-MAY-2011 14:34:26:171] ntuscnp: entry
    [18-MAY-2011 14:34:26:171] sntusgph: entry
    [18-MAY-2011 14:34:26:171] sntusgph: exit
    [18-MAY-2011 14:34:26:171] ntus2err: entry
    [18-MAY-2011 14:34:26:171] ntus2err: sd=9, op=1, resnt[0]=512, resnt[1]=98, resnt[2]=0
    [18-MAY-2011 14:34:26:171] ntus2err: exit
    [18-MAY-2011 14:34:26:171] sntusgph: entry
    [18-MAY-2011 14:34:26:171] sntusgph: fail to search /var/tmp/.oracle/sEXTPROC1
    [18-MAY-2011 14:34:26:172] sntusgph: exit
    [18-MAY-2011 14:34:26:172] ntus2err: entry
    [18-MAY-2011 14:34:26:172] ntus2err: sd=9, op=1, resnt[0]=525, resnt[1]=1, resnt[2]=0
    [18-MAY-2011 14:34:26:172] ntus2err: exit
    [18-MAY-2011 14:34:26:172] ntuscnp: exit
    [18-MAY-2011 14:34:26:172] ntusconn: exit
    [18-MAY-2011 14:34:26:172] nserror: nsres: id=0, op=65, ns=12555, ns2=12560; nt[0]=525, nt[1]=1, nt[2]=0; ora[0]=0, ora[1]=0, ora[2]=0
    [18-MAY-2011 14:34:26:172] nsopen: unable to open transport
    [18-MAY-2011 14:34:26:172] nsmfr: 1992 bytes at 0x80c5cd0
    [18-MAY-2011 14:34:26:172] nsmfr: 1144 bytes at 0x80c5850
    [18-MAY-2011 14:34:26:172] nsglhfre: entry
    [18-MAY-2011 14:34:26:172] nsglhrem: entry
    [18-MAY-2011 14:34:26:172] nsglhrem: entry
    [18-MAY-2011 14:34:26:172] nsglhfre: Deallocating cxd 0x80c43f0.
    [18-MAY-2011 14:34:26:172] nsglhfre: exit
    [18-MAY-2011 14:34:26:172] nsglma: Reporting the following error stack:
    TNS-12555: TNS:permission denied
    TNS-12560: TNS:protocol adapter error
    TNS-00525: Insufficient privilege for operation
    Linux Error: 1: Operation not permitted
    [18-MAY-2011 14:34:26:172] nsdo: cid=0, opcode=67, bl=542, what=10, uflgs=0x0, cflgs=0x3
    [18-MAY-2011 14:34:26:172] nsdo: rank=64, nsctxrnk=0
    [18-MAY-2011 14:34:26:172] nsdo: nsctx: state=2, flg=0x4004, mvd=0
    [18-MAY-2011 14:34:26:172] nsdo: gtn=188, gtc=188, ptn=10, ptc=2047
    [18-MAY-2011 14:34:26:172] nscon: sending NSPTRF packet
    [18-MAY-2011 14:34:26:172] nspsend: plen=12, type=4
    [18-MAY-2011 14:34:26:172] ntpwr: entry
    [18-MAY-2011 14:34:26:172] ntpwr: exit
    [18-MAY-2011 14:34:26:172] nspsend: 12 bytes to transport
    [18-MAY-2011 14:34:26:172] nscon: sending 542 bytes connect data
    [18-MAY-2011 14:34:26:172] nsdo: cid=0, opcode=67, bl=542, what=1, uflgs=0x4000, cflgs=0x0
    [18-MAY-2011 14:34:26:172] nsdo: nsctx: state=2, flg=0x4004, mvd=0
    [18-MAY-2011 14:34:26:172] nsdo: gtn=188, gtc=188, ptn=10, ptc=2047
    [18-MAY-2011 14:34:26:172] nsdo: 542 bytes to NS buffer
    [18-MAY-2011 14:34:26:172] nsdo: nsctxrnk=0
    [18-MAY-2011 14:34:26:172] nstimarmed: no timer allocated
    [18-MAY-2011 14:34:26:172] nstoClearTimeout: ATO disabled for ctx=0x0x80afb80
    [18-MAY-2011 14:34:26:172] nstoClearTimeout: STO disabled for ctx=0x0x80afb80
    [18-MAY-2011 14:34:26:172] nstoClearTimeout: RTO disabled for ctx=0x0x80afb80
    [18-MAY-2011 14:34:26:172] nstoClearTimeout: PITO disabled for ctx=0x0x80afb80
    [18-MAY-2011 14:34:26:172] nstoUpdateActive: Active timeout is -1 (see nstotyp)
    [18-MAY-2011 14:34:26:172] ntpctl: entry
    [18-MAY-2011 14:34:26:172] ntpctl: exit
    [18-MAY-2011 14:34:26:172] ntpctl: entry
    [18-MAY-2011 14:34:26:172] ntpctl: exit
    [18-MAY-2011 14:34:26:172] nsdo: cid=0, opcode=66, bl=0, what=0, uflgs=0x0, cflgs=0x2
    [18-MAY-2011 14:34:26:172] nsdo: rank=64, nsctxrnk=0
    [18-MAY-2011 14:34:26:172] nsdo: nsctx: state=2, flg=0x4000, mvd=0
    [18-MAY-2011 14:34:26:172] nsdofls: DATA flags: 0x40
    [18-MAY-2011 14:34:26:172] nsdofls: sending NSPTDA packet
    [18-MAY-2011 14:34:26:172] nspsend: plen=552, type=6
    [18-MAY-2011 14:34:26:172] ntpwr: entry
    [18-MAY-2011 14:34:26:172] ntpwr: exit
    [18-MAY-2011 14:34:26:172] nspsend: 552 bytes to transport
    [18-MAY-2011 14:34:26:172] nsdo: nsctxrnk=0
    [18-MAY-2011 14:34:26:172] nsclose: closing transport
    [18-MAY-2011 14:34:26:172] ntpdisc: entry
    [18-MAY-2011 14:34:26:173] ntpdisc: exit
    [18-MAY-2011 14:34:26:173] nsclose: global context check-out (from slot 0) complete
    [18-MAY-2011 14:34:26:173] nsmfr: 1992 bytes at 0x80bfd40
    [18-MAY-2011 14:34:26:173] nsmfr: 1144 bytes at 0x80afb80
    [18-MAY-2011 14:34:26:173] nsbrfr: nsbfs at 0x80c1760, data at 0x80c0740.
    [18-MAY-2011 14:34:26:173] nsbrfr: nsbfs at 0x80c2030, data at 0x80c20e0.
    [18-MAY-2011 14:34:26:173] nsbrfr: nsbfs at 0x80c0690, data at 0x80c1810.
    [18-MAY-2011 14:34:26:173] nsbrfr: nsbfs at 0x80c5730, data at 0x80c64a0.
    [18-MAY-2011 14:34:26:173] nlse_term_audit: entry
    [18-MAY-2011 14:34:26:173] nlse_term_audit: exit

    Check this thread
    Debian - TNS-12555: TNS:permission denied

  • Lsnrctl start/stop "message not found" errors

    When I installed 10g I selected a global database name of 'orcl.clearbean.com' and a sid of 'dev1'. Below are my environment variables, tnsnames.ora file and listener.ora file. I can connect and use the database, but I am getting errors messages when I do a lsnrctl stop/start. I am running Oracle and Apache together on a server running Fedora Core 4 (linux). Any help would be greatly appreciated.
    Supporting information:
    [oracle@emerson ~]$ env | grep ORA
    ORACLE_SID=dev1
    ORACLE_BASE=/u01/app/oracle
    ORACLE_TERM=xterm
    ORACLE_HOME=/u01/app/oracle/product/10.1.0/db_1
    [oracle@emerson ~]$ cat $ORACLE_HOME/network/admin/tnsnames.ora
    # tnsnames.ora Network Configuration File: /u01/app/oracle/product/10.1.0/db_1/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = emerson.clearbean.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl.clearbean.com)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    [oracle@emerson ~]$ cat $ORACLE_HOME/network/admin/listener.ora
    # listener.ora Network Configuration File: /u01/app/oracle/product/10.1.0/db_1/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /u01/app/oracle/product/10.1.0/db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = emerson.clearbean.com)(PORT = 1521))
    [oracle@emerson ~]$ lsnrctl stop
    LSNRCTL for Linux: Version 10.1.0.2.0 - Production on 07-OCT-2005 01:19:22
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Message 1053 not found; No message file for product=network, facility=TNSTNS-12541: Message 12541 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-00511: Message 511 not found; No message file for product=network, facility=TNS
    Linux Error: 2: No such file or directory
    Message 1053 not found; No message file for product=network, facility=TNSTNS-12541: Message 12541 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-00511: Message 511 not found; No message file for product=network, facility=TNS
    Linux Error: 111: Connection refused
    [oracle@emerson ~]$ lsnrctl start
    LSNRCTL for Linux: Version 10.1.0.2.0 - Production on 07-OCT-2005 01:19:30
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Message 1070 not found; No message file for product=network, facility=TNSTNSLSNR for Linux: Version 10.1.0.2.0 - Production
    Message 459 not found; No message file for product=network, facility=NL
    Message 279 not found; No message file for product=network, facility=NL
    Message 1073 not found; No message file for product=network, facility=TNSMessage 1073 not found; No message file for product=network, facility=TNS
    Message 1053 not found; No message file for product=network, facility=TNSMessage 1020 not found; No message file for product=network, facility=TNSMessage 1021 not found; No message file for product=network, facility=TNSMessage 1022 not found; No message file for product=network, facility=TNSMessage 1023 not found; No message file for product=network, facility=TNSMessage 1026 not found; No message file for product=network, facility=TNSMessage 1034 not found; No message file for product=network, facility=TNSMessage 1024 not found; No message file for product=network, facility=TNSMessage 1025 not found; No message file for product=network, facility=TNSMessage 1040 not found; No message file for product=network, facility=TNSMessage 1033 not found; No message file for product=network, facility=TNSMessage 1028 not found; No message file for product=network, facility=TNSMessage 1415 not found; No message file for product=network, facility=TNS Message 1050 not found; No message file for product=network, facility=TNS
    Message 1050 not found; No message file for product=network, facility=TNS
    Message 1029 not found; No message file for product=network, facility=TNSMessage 1411 not found; No message file for product=network, facility=TNS
    Message 1408 not found; No message file for product=network, facility=TNS
    Message 1052 not found; No message file for product=network, facility=TNS[oracle@emerson ~]$

    Thx for the feedback; however after defining TNS_ADMIN and turning of the firewall I am still getting the message errors. Any other suggestions?
    [oracle@emerson ~]$ ls $ORACLE_HOME
    admin emerson.clearbean.com_dev1 ldap oraInst.loc sqlj
    assistants flash_recovery_area lib ord sqlplus
    bin has md oui srvm
    cdata hs mesg owm sysman
    cfgtoollogs install mgw perl uix
    config install.platform network plsql ultrasearch
    css inventory nls precomp wwg
    ctx javavm oc4j racg xdk
    dbs jdbc olap rdbms
    demo jdk OPatch relnotes
    diagnostics jlib opmn root.sh
    dm jre oracore slax
    [oracle@emerson ~]$ ls $TNS_ADMIN
    listener.ora samples sqlnet.ora tnsnames.ora.orig
    listener.ora.orig shrept.lst tnsnames.ora
    [oracle@emerson ~]$ lsnrctl stop
    LSNRCTL for Linux: Version 10.1.0.2.0 - Production on 07-OCT-2005 22:43:44
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Message 1053 not found; No message file for product=network, facility=TNSMessage 1052 not found; No message file for product=network, facility=TNS[oracle@emerson ~]$ lsnrctl start
    LSNRCTL for Linux: Version 10.1.0.2.0 - Production on 07-OCT-2005 22:43:51
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Message 1070 not found; No message file for product=network, facility=TNSTNSLSNR for Linux: Version 10.1.0.2.0 - Production
    Message 459 not found; No message file for product=network, facility=NL
    Message 279 not found; No message file for product=network, facility=NL
    Message 1073 not found; No message file for product=network, facility=TNSMessage 1073 not found; No message file for product=network, facility=TNS
    Message 1053 not found; No message file for product=network, facility=TNSMessage 1020 not found; No message file for product=network, facility=TNSMessage 1021 not found; No message file for product=network, facility=TNSMessage 1022 not found; No message file for product=network, facility=TNSMessage 1023 not found; No message file for product=network, facility=TNSMessage 1026 not found; No message file for product=network, facility=TNSMessage 1034 not found; No message file for product=network, facility=TNSMessage 1024 not found; No message file for product=network, facility=TNSMessage 1025 not found; No message file for product=network, facility=TNSMessage 1040 not found; No message file for product=network, facility=TNSMessage 1033 not found; No message file for product=network, facility=TNSMessage 1028 not found; No message file for product=network, facility=TNSMessage 1415 not found; No message file for product=network, facility=TNS Message 1050 not found; No message file for product=network, facility=TNS
    Message 1050 not found; No message file for product=network, facility=TNS
    Message 1029 not found; No message file for product=network, facility=TNSMessage 1411 not found; No message file for product=network, facility=TNS
    Message 1408 not found; No message file for product=network, facility=TNS
    Message 1052 not found; No message file for product=network, facility=TNS[oracle@emerson ~]$

  • TNS Service starting error- Windows 7.0 Home premium- 64bit machine

    I bought a new DELL Inspiron machine, where windows 7.0 home premium was installed. It is now a 64 bit system.
    I installed Oracle 10g database. It goes well until end, but throws TNS Service could not be started as an error message at the end. However, it mentions that the error could be resolved by starting the service manually. I tried to do that, but I get TNS: Permission Denied error.
    I started installation process by login to adminstrator login. I tried starting the TNS service with admin login.
    Is the error message I am getting because of 64 bit machine? Is permission denied because of Home premium?
    Let me know and suggest your advices.
    Please suggest if there are any turn around for this issue. I am trying to solve this from past 15 days.

    My views is you didn't read my response.
    So here it is again
    Oracle doesn't run on Windows Home. Period. Windows Home doesn't have accounts.
    Oracle 10g doesn't run on Windows 7. Moreover it is desupported.
    11gR2 is about to be certified on Windows 7, but not on Windows Home.
    Sybrand Bakker
    Senior Oracle DBA

  • Listener starting error in R12

    hi,
    when im trying to start the r12 instance listener im getting the following error,,,,
    Error listening on: (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    TNS-12542: TNS:address already in use
    TNS-12560: TNS:protocol adapter error
    TNS-00512: Address already in use
    Linux Error: 98: Address already in use
    im using 10 database for this and im using linux redhat version 4.0....
    i think, have to change the address for the port...
    how to do that... pls explain anyone ...
    thanks,
    vasanth

    hi,
    As the upper file that u gave is same as of me....
    if i stop the SID im getting the following error.....
    [ora10g@ebs ~]$ lsnrctl stop Y12I
    LSNRCTL for Linux: Version 10.2.0.2.0 - Production on 03-JUN-2010 06:11:19
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCY12I))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 2: No such file or directory
    Connecting to (ADDRESS=(PROTOCOL=TCP)(Host=ebs.yantro.com)(Port=1542))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    Here comes below my listener.ora file,
    Y12I =
    (ADDRESS_LIST =
    (ADDRESS= (PROTOCOL= IPC)(KEY= EXTPROCY12I))
    (ADDRESS= (PROTOCOL= TCP)(Host= ebs.yantro.com )(Port= 1542))
    SID_LIST_Y12I =
    (SID_LIST =
    (SID_DESC =
    (ORACLE_HOME= /10g/d02/oracle/Y12I/db/tech_st/10.2.0)
    (SID_NAME = Y12I)
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /10g/d02/oracle/Y12I/db/tech_st/10.2.0)
    (PROGRAM = extproc)
    STARTUP_WAIT_TIME_Y12I = 0
    CONNECT_TIMEOUT_Y12I = 10
    TRACE_LEVEL_Y12I = OFF
    LOG_DIRECTORY_Y12I = /10g/d02/oracle/Y12I/db/tech_st/10.2.0/network/admin
    LOG_FILE_Y12I = Y12I
    TRACE_DIRECTORY_Y12I = /10g/d02/oracle/Y12I/db/tech_st/10.2.0/network/admin
    TRACE_FILE_Y12I = Y12I
    ADMIN_RESTRICTIONS_Y12I = OFF
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_Y12I = OFF
    IFILE=/10g/d02/oracle/Y12I/db/tech_st/10.2.0/network/admin/Y12I_ebs/listener_ifile.ora
    thanks,
    vasanth
    Edited by: user12864080 on Jun 3, 2010 5:49 AM

  • ./lsnrctl start effort- Message 1070 not found;

    Message 1070 not found; No message file for product=network, facility=TNSTNS-125 error when trying to start the DB listiner?
    oracle@linuxsrv:/u01/app/oracle/OraHome/bin> ./lsnrctl start
    LSNRCTL for Linux: Version 10.1.0.4.2 - Production on 16-JUN-2009 17:16:15
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Message 1070 not found; No message file for product=network, facility=TNSTNS-125 45: Message 12545 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-00515: Message 515 not found; No message file for product=network, facilit y=TNS
    Linux Error: 2: No such file or directory
    oracle@linuxsrv:/u01/app/oracle/OraHome/bin>
    OAS environment settings
    LESS=-M -I
    MACHTYPE=i686-suse-linux
    LOGNAME=oracle
    XDG_DATA_DIRS=/usr/share:/etc/opt/kde3/share:/opt/kde3/share
    LESSOPEN=lessopen.sh %s
    INFOPATH=/usr/local/info:/usr/share/info:/usr/info
    ORA_NLS33=/u01/app/oracle/as10gHome/lib:/u01/app/oracle/bin:/u01/app/oracle:/u01/app/midtier:/u01/app/midtier/bin:/u01/app/midtier/as10gHome/opmm/lib:/OraHome/lib:/OraHome/opmn/lib/nls/admin/data
    DISPLAY=192.168.2.9:0.0
    ORACLE_HOME=/u01/app/oracle/as10gHome/lib:/u01/app/oracle/bin:/u01/app/oracle:/u01/app/midtier:/u01/app/midtier/bin:/u01/app/midtier/as10gHome/opmm/lib:/OraHome/lib:/OraHome/opmn/lib
    LESSCLOSE=lessclose.sh %s %s
    G_BROKEN_FILENAMES=1
    COLORTERM=1
    _=/usr/bin/env
    OLDPWD=/u01/app/oracle/OraHome
    oracle@linuxsrv:/u01/app/oracle/OraHome/bin> vi /home/oracle/.bash_profile
    TMP=/usr/tmp
    DISPLAY=192.168.2.9:0.0
    ORACLE_BASE=/u01/app/oracle
    ORACLE_MID=/u01/app/midtier
    #ORACLE_OCA=/u01/app/OCA
    LD_LIBRARY_PATH=$ORACLE_BASE/OraHome/opmn/lib:$ORACLE_BASE/OraHome/lib:$ORACLE_MID/as10gHome/opmn/lib:$ORACLE_MID/as10gHome/lib:$PATH
    ORACLE_HOME=$ORACLE_BASE/as10gHome/lib:$ORACLE_BASE/bin:$ORACLE_BASE:$ORACLE_MID:$ORACLE_MID/bin:$ORACLE_MID/as10gHome/opmm/lib:$ORACLE_HOME/OraHome/lib:$ORACLE_HOME/OraHome/opmn/lib
    ORACLE_SID=orcl
    LISTENER=$ORACLE_HOME/bin/lsnrctl
    TNS_ADMIN=$ORACLE_HOME/network/admin
    ORA_NLS33=$ORACLE_HOME/nls/admin/data
    PATH=/usr/local/bin:/usr/bin:/usr/local2/bin:/usr:$ORACLE_HOME/bin:$ORACLE_HOME/bin:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/opmn/bin/$ORACLE_HOME/lib:$PATH
    LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib:$ORACLE_HOME/opmn/lib:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/opmn/bin:$ORACLE_HOME/lib:$PATH
    export TMP ORACLE_BASE ORACLE_HOME ORACLE_SID ORACLE_MID ORACLE_OCA LD_LIBRARY_PATH LISTENER DISPLAY PATH TNS_ADMIN ORA_NLS33
    Any suggestion in resolving?

    exit and log back..
    oracle@linuxsrv:~> env
    LESSKEY=/etc/lesskey.bin
    NNTPSERVER=news
    INFODIR=/usr/local/info:/usr/share/info:/usr/info
    MANPATH=/usr/local/man:/usr/share/man:/opt/dx/man
    HOSTNAME=linuxsrv
    XKEYSYMDB=/usr/share/X11/XKeysymDB
    HOST=linuxsrv
    SHELL=/bin/bash
    TERM=xterm
    PROFILEREAD=true
    HISTSIZE=1000
    LISTENER=/u01/app/oracle/as10gHome/bin/lsnrctl
    ORACLE_MID=/u01/app/midtier
    GNOME_PATH=:/usr
    MORE=-sl
    USER=oracle
    LD_LIBRARY_PATH=/u01/app/oracle/OraHome/opmn/lib:/u01/app/oracle/OraHome/lib:/u01/app/midtier/as10gHome/opmn/lib:/u01/app/midtier/as10gHome/lib:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/kde3/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/u01/app/oracle/as10gHome/lib:/u01/app/oracle/as10gHome/opmn/lib:/u01/app/oracle/as10gHome/dcm/bin:/u01/app/oracle/as10gHome/opmn/bin:/u01/app/oracle/as10gHome/lib:/usr/local/bin:/usr/bin:/usr/local2/bin:/usr:/u01/app/oracle/as10gHome/bin:/u01/app/oracle/as10gHome/bin:/u01/app/oracle/as10gHome/dcm/bin:/u01/app/oracle/as10gHome/opmn/bin//u01/app/oracle/as10gHome/lib:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/kde3/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin
    LS_COLORS=no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:
    ORACLE_SID=orcl
    XNLSPATH=/usr/share/X11/nls
    ENV=/etc/bash.bashrc
    ORACLE_BASE=/u01/app/oracle
    HOSTTYPE=i386
    FROM_HEADER=
    PAGER=less
    CSHEDIT=emacs
    XDG_CONFIG_DIRS=/etc/xdg
    MINICOM=-c on
    TNS_ADMIN=/u01/app/oracle/as10gHome/network/admin
    GNOMEDIR=/usr
    MAIL=/var/spool/mail/oracle
    PATH=/usr/local/bin:/usr/bin:/usr/local2/bin:/usr:/u01/app/oracle/as10gHome/bin:/u01/app/oracle/as10gHome/bin:/u01/app/oracle/as10gHome/dcm/bin:/u01/app/oracle/as10gHome/opmn/bin//u01/app/oracle/as10gHome/lib:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/kde3/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin
    CPU=i686
    INPUTRC=/etc/inputrc
    PWD=/home/oracle
    LANG=en_US.UTF-8
    PYTHONSTARTUP=/etc/pythonstart
    QT_SYSTEM_DIR=/usr/share/desktop-data
    SHLVL=1
    HOME=/home/oracle
    LESS_ADVANCED_PREPROCESSOR=no
    OSTYPE=linux
    LS_OPTIONS=-N --color=tty -T 0
    XCURSOR_THEME=DMZ
    WINDOWMANAGER=/usr/bin/startkde
    TMP=/usr/tmp
    G_FILENAME_ENCODING=@locale,UTF-8,ISO-8859-15,CP1252
    LESS=-M -I
    MACHTYPE=i686-suse-linux
    LOGNAME=oracle
    XDG_DATA_DIRS=/usr/share:/etc/opt/kde3/share:/opt/kde3/share
    LESSOPEN=lessopen.sh %s
    INFOPATH=/usr/local/info:/usr/share/info:/usr/info
    ORA_NLS33=/u01/app/oracle/as10gHome/nls/admin/data
    DISPLAY=192.168.2.9:0.0
    ORACLE_HOME=/u01/app/oracle/as10gHome
    LESSCLOSE=lessclose.sh %s %s
    G_BROKEN_FILENAMES=1
    COLORTERM=1
    _=/usr/bin/env
    oracle@linuxsrv:~>

  • TNS-12560: TNS:protocol adapter error  TNS-00530: Protocol adapter error

    Unable to start listener service.
    Running Oracle Database 11gr2 on Windows 7.
    I just installed Oracle with the "install software only" option.
    Already set up the instance, the database, the dictionary views, etc.
    Created tsnames.ora, sqlnet.ora and listener.ora as shown below.
    Before installing Oracle I followed the instruction on Oracle
    documentation to install a Loopback Adapter.
    It is set up as the primary adapter as indicated on the
    instructions. The name is "gabylan" (previously the computer
    name was "P4". I set up the "hosts" file as indicated, the oracle_hostname
    variable, etc. as you will see below. I don't know if it's important to "uncomment"
    the line on the "hosts" file for the "localhost" entry, I left it
    as it was originally.
    Services currently in "Started" Status:
    OracleServiceorcl
    Oracle orcl VSS Writer Service
    OracleMTSRecoveryService
    OracleOraDb11g_home1ClrAgent
    OracleServiceorcl
    Below is a summary of the error message and some information
    about my system setup to help you diagnose my problem.
    ===============================================================================
    c:\Users\Public\myscripts>lsnrctl start
    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on 18-SEP-2012 13:48
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Starting tnslsnr: please wait...
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    c:\Users\Public\myscripts> lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on 18-SEP-2012 16:17:16
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=gabylan)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 61: Unknown error
    ================================================================================
    My "hosts" File: (c:\windows\system32\drivers\etc\hosts)
    # localhost name resolution is handled within DNS itself.
    #     127.0.0.1 localhost
    #     ::1 localhost
    192.168.5.5          gabylan          gabylan
    =================================================================================
    c:\Users\Public\myscripts>ipconfig /all
    Windows IP Configuration
    Host Name . . . . . . . . . . . . : gabylan
    Primary Dns Suffix . . . . . . . :
    Node Type . . . . . . . . . . . . : Hybrid
    IP Routing Enabled. . . . . . . . : No
    WINS Proxy Enabled. . . . . . . . : No
    Ethernet adapter Local Area Connection 2:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft Loopback Adapter
    Physical Address. . . . . . . . . : 02-00-4C-4F-4F-50
    DHCP Enabled. . . . . . . . . . . : No
    Autoconfiguration Enabled . . . . : Yes
    Link-local IPv6 Address . . . . . : fe80::b8f5:bbb0:cf8b:c735%15(Preferred)
    IPv4 Address. . . . . . . . . . . : 192.168.5.5(Preferred)
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . :
    DHCPv6 IAID . . . . . . . . . . . : 335675468
    DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-17-B7-78-52-00-25-22-51-68-AB
    DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1
    fec0:0:0:ffff::2%1
    fec0:0:0:ffff::3%1
    NetBIOS over Tcpip. . . . . . . . : Enabled
    Ethernet adapter Local Area Connection:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Realtek RTL8102E/RTL8103E Family PCI-E Fast Ethernet NIC (NDIS 6.20)
    Physical Address. . . . . . . . . : 00-25-22-51-68-AB
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    Link-local IPv6 Address . . . . . : fe80::7538:173c:c202:4985%10(Preferred)
    IPv4 Address. . . . . . . . . . . : 192.168.1.2(Preferred)
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Lease Obtained. . . . . . . . . . : Tuesday, September 18, 2012 11:37:37 AM
    Lease Expires . . . . . . . . . . : Wednesday, September 19, 2012 1:45:01 PM
    Default Gateway . . . . . . . . . : 192.168.1.1
    DHCP Server . . . . . . . . . . . : 192.168.1.1
    DHCPv6 IAID . . . . . . . . . . . : 234890530
    DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-17-B7-78-52-00-25-22-51-68-AB
    DNS Servers . . . . . . . . . . . : 192.168.1.1
    NetBIOS over Tcpip. . . . . . . . : Enabled
    =================================================================================
    # sqlnet.ora Network Configuration File:
    # c:\app\oracle\product\11.2.0\dbhome_1\NETWORK\ADMIN\sqlnet.ora
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    # OTHER OPTION FOR AUTHENTICATION IS: SQLNET.AUTHENTICATION_SERVICES= (NTS)
    SQLNET.AUTHENTICATION_SERVICES= (NONE)
    NAMES.DIRECTORY_PATH= (TNSNAMES, HOSTNAME, EZCONNECT)
    ADR_BASE = c:\app\oracle\
    ====================================================================================
    # tnsnames.ora Network Configuration File:
    # c:\app\oracle\product\11.2.0\dbhome_1\NETWORK\ADMIN\tnsnames.ora
    orcl =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = gabylan)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    ====================================================================================
    # listener.ora Network Configuration File:
    # c:\app\oracle\product\11.2.0\dbhome_1\network\admin\listener.ora
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = gabylan)(PORT = 1521))
    SID_LIST_LISTENER =
         (SID_LIST =
              (SID_DESC =
         (ORACLE_HOME = c:\app\oracle\product\11.2.0\dbhome_1)
         (SID_NAME = orcl)
    ADR_BASE_LISTENER = c:\app\oracle
    =================================================================================
    c:\Users\Public\myscripts>ping gabylan
    Pinging gabylan [192.168.5.5] with 32 bytes of data:
    Reply from 192.168.5.5: bytes=32 time<1ms TTL=128
    Reply from 192.168.5.5: bytes=32 time<1ms TTL=128
    Reply from 192.168.5.5: bytes=32 time<1ms TTL=128
    Reply from 192.168.5.5: bytes=32 time<1ms TTL=128
    Ping statistics for 192.168.5.5:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    =================================================================================     
    Some related environment variables on my system:
    COMPUTERNAME=GABYLAN
    FP_NO_HOST_CHECK=NO
    HOMEPATH=\Users\oracle
    LOGONSERVER=\\GABYLAN
    ORACLE_HOME=c:\app\oracle\product\11.2.0\dbhome_1
    ORACLE_HOSTNAME=gabylan
    ORACLE_SID=orcl
    ORACLE_UNQNAME=orcl
    SQLPATH=c:\users\public\myscripts
    USERDOMAIN=GABYLAN
    USERNAME=oracle
    USERPROFILE=C:\Users\oracle
    ==================================================================================
    Summary from V$INSTANCE VIEW:
    INSTANCE
    NAME    HOSTNAME STARTUP_T STATUS DATABASE_STATUS ACTIVE_ST
    orcl GABYLAN STARTED      ACTIVE NORMAL
    =================================================================================
    Thanks,
    Gabriel

    I am getting the same error while starting or stopping the listener
    LSNRCTL> start CSCLIST
    Starting tnslsnr: please wait...
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    LSNRCTL> stop CSCLIST
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=CSCINDAE708070)(PORT=152
    2)))
    NL-00303: syntax error in NV string
    TNS-01153: Failed to process string: (DESCRIPTION=(CONNECT_DATA=(CID=(PROGRAM=)
    (HOST=)(USER=Manager(REMOVE)))(COMMAND=stop)(ARGUMENTS=64)(SERVICE=CSCLIST)(VERS
    ION=186646784)))
    Pls help
    Listener.ora:
    # listener.ora Network Configuration File: D:\Sagaya\11gDBhome\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    CSCLIST =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = CSCINDAE708070)(PORT = 1522))
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1522))
    SID_LIST_CSCLIST =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = D:\Sagaya\11gDBhome\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:D:\Sagaya\11gDBhome\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    ADR_BASE_CSCLIST = D:\Sagaya\11gDBhome

  • TNS-12541: TNS:no listener   TNS-12560: TNS:protocol adapter error    TNS-00511: No listener

    Dear Team,
                            When I am trying to start my LISTENER  on my Windows server manually its showing error like The OracleOraDb11g_home1TNSListener service on Local Computer started and then stopped. Some services stop automatically if they are not in use by other services or programs.I Have created LISTENER twice also.When I am checking status on CMD prompt below is error is showing.Please help me out how to solve the issue.
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=<host name>)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
      TNS-00511: No listener
      32-bit Windows Error: 61: Unknown error
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC0)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
      TNS-00511: No listener
      32-bit Windows Error: 2: No such file or directory
    Regards,
    Praveen K

    Hi,
    Did you check whether the windows service for listener is up and running? if not please start it, by typing "services.msc" in run window and start the service. Then check whether you have listener.ora file in $ORACLE_HOME/network/admin and also post listener.ora contents.
    Regards,
    Pradeep. V

  • TNS-12555: TNS:permission denied

    I recently re-installed ORACLE-XE using the increased swap size method below:
    dd if=/dev/zero of=/swapfile1 bs=1M count=600
    mkswap /swapfile
    swapon /swapfile
    it works perfectly until I log out and log back in.
    Then http://127.0.01:8080/apex gives a connection refused error. It turns out oracle's startdb.sh is dev/null'ing the error message which was:
    TNS-12555: TNS:permission denied
    TNS-12560: TNS:protocol adapter error
    TNS-00525: Insufficient privilege for operation
    Linux Error: 1: Operation not permitted
    All my files in /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin are:
    -r-xr-xr-x 1 oracle dba 68948 2006-02-20 06:31 lsnrctl
    protected so I've tried using chmod and chgrp and chown but no success!! I did one time get it to work by logging in as oracle. Then apex worked but my (java) application complained that there wasn't enough swap space.
    As I said earlier, when I installed oracle xe everything worked fine. tnsnames.ora & listener.ora are fine so that's not the cause. My problem is I know a lot about oracle but I'm fairly new to linux. I'm using SUSE 10.
    Can anyone help.
    By the way, how can I see if my swap size change survived a reboot?

    Thanks Werner
    It was a problem with access rights to var/tmp/.oracle.
    I had first installed XE in January (I could see s#... files from back there in var/tmp/.oracle). Things came unstuck when I increased my pc's memory. So out of frustration I re-installed XE.
    Now I finally have it working again.
    I had .oracle as
    drwxrwxrwt 2 root dba 128 2006-10-21 21:47 .oracle
    probably because I ran /etc/init.d/oracle-xe configure as root. Or maybe because I had an old installation.
    Thanks a lot for your help.
    Allister

  • Tns-12555

    Hi,
    we got the error.
    Db:9.2.0.7.0
    os:red hat 4.2
    TNS-12555: TNS:permission denied
    TNS-12560: TNS:protocol adapter error
    TNS-00525: Insufficient privilege for operation
    Linux Error: 1: Operation not
    Listener.ora
    FTEN =
    (ADDRESS_LIST =
    (ADDRESS= (PROTOCOL= IPC)(KEY= EXTPROC))
    (ADDRESS= (PROTOCOL= TCP)(Host= ebs.yantro.com )(Port= 1566))
    after getting error i added FTEN in address list
    FTEN =
    (ADDRESS_LIST =
    (ADDRESS= (PROTOCOL= IPC)(KEY= EXTPROC*FTEN*))
    (ADDRESS= (PROTOCOL= TCP)(Host= ebs.yantro.com )(Port= 1566))
    then we can able to start the LISTENER.

    Hi,
    As you said it linux SO,
    Please check the following directories
    /tmp/oracle or
    /var/tmp/.oracle
    Next, check whether the current user logged in to OS, is having the full permission or not.
    Try to start the listener that has adequate read and write permissions on the directory specified above.
    Try and see, it will work. You can see the issue, it clearly depicts reason for that.
    - Pavan Kumar N

  • 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>

  • Lsnrctl start problem

    dear all,
    I'm try to connect to database with 2 PC but I have this problem
    plz help
    C:\Documents and Settings\comp2>lsnrctl start
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 14-OCT-2009 09:51:07
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Starting tnslsnr: please wait...
    Failed to start service, error 3.
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error

    user10947262 wrote:
    dear all,
    I'm try to connect to database with 2 PC but I have this problem
    plz help
    C:\Documents and Settings\comp2>lsnrctl start
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 14-OCT-2009 09:51:07
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Starting tnslsnr: please wait...
    Failed to start service, error 3.
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    I had a similar situation a few months ago when trying to configure Apex, using entries copied from the installation notes. The listener would not start until i removed an entry “PlsqlRequestValidationFunction www_flow_epg_include_modules.authorize” from the dads.conf file that I had copied from the installation docs. Never did find out why my 10gR2 software did not like that entry.

  • Listener start error

    [server1 admin]$ lsnrctl start test
    LSNRCTL for Linux: Version 10.1.0.3.0 - Production on 24-NOV-2009 14:22:21
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Starting /opt/misc/oracle/product/10.1.0.2/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.1.0.3.0 - Production
    System parameter file is /opt/misc/oracle/product/10.1.0.2/network/admin/listener.ora
    Log messages written to /opt/misc/oracle/product/10.1.0.2/network/log/ctrlm.log
    TNS-01151: Missing listener name, test, in LISTENER.ORA
    Listener failed to start. See the error message(s) above...
    and my listener.ora file is
    LSTNR_test =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = test))
    (ADDRESS = (PROTOCOL = TCP)(HOST = server1.oracle.com)(PORT = 1521))
    SID_LIST_LSTNR_test =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = test)
    (ORACLE_HOME = /opt/misc/oracle/product/10.1.0.2)
    (SID_NAME =test)
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_LSTNR_test = off
    and my tns names.ora file is
    test =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (FAILOVER = ON)
    (ADDRESS = (PROTOCOL = IPC)(KEY = test))
    (ADDRESS = (PROTOCOL = TCP)(HOST = server1.oracle.com)(PORT = 1521))
    (CONNECT_DATA =
    (SID = test)
    (UR = A)
    ~
    ~
    ~
    ~

    Oracle is right, there's no listener name 'test' in listener.ora, try
    lsnrctl start LSTNR_test
    Werner

Maybe you are looking for

  • I can't open my iPhoto - tells me to use the new version

    i can't open my iPhoto! this the message that i get "You have made changes to your photo library using a newer version of iPhoto. Please quit and use the latest version of iPhoto." I have iPhoto 4 on my G4 at home. I tried transferring some burned ph

  • Software-updater

    software-updater

  • Album artwork shows in iTunes but not on ipod

    Hello all, I have a 30g video ipod and am having trouble getting the album artwork to show up. In itunes I have clicked the show or hide album art button and when I click ipod in the source list and play the song I have loaded the album art onto I ca

  • Adobe LAB (#@$#@$) Colours

    Hi Has anyone found a practical way to get around the LAB to CMYK completely useless values? Also we use Kodak Preps 6.2.1 for impositions and it doesn't handle LAB colours, they just vanish?

  • IOS 8 no funcionan los gestos

    tengo una iPad Air 1, después de actualizar a iOS 8 los gestos con los dedos han estado fallando, principalmente el de cerrar aplicaciones con mis cinco dedos, alguien tiene este mismo problema ?