Intermittent ora-1017; poor workaround lsnrctl stop/start

Running Oracle 11.2.0.3 on a redhat Linux x86_64 installation.
I've mapped the servicename to the desired sid in the listener.ora to avoid continually remapping the config information in the source code. This allows the URL to remain consistent for all developers, "jdbc:oracle:thin@//host:port/service" and during predeployment testing it is changed in the listener.ora file to reflect the "production" deployment for final testing.
This has been working great until recently when we began to receive intermittent ora-1017 during connection. If I stop and start the listener, lsnrctl stop:lsnrctl start, I can connect successfully for two sessions and then the ora-1017 reappears.
os authentication is in use(until ??? & I know it's bad) with remote_os_authent=true os_authent_prefix=''. User accounts are the same in both instances, "scott identified externally" for instance
The client is Windows XP and the connection is made using hibernate 3.26 (empty pwd/uid in hibernate.cfg.xml)
listener.ora:(example)
sid_list_listener =
(sid_list =
(sid_desc =
(global_dbname = productionServiceName)
(ORACLE_HOME = /the/oracle/home)
(sid_name = developmentName)
(sid_desc =
(global_dbname = developmentName)
(ORACLE_HOME = /the/oracle/home)
(sid_name = developmentName)
two connections and ora-1017 consistently.
I've noticed that the lsnrctl status reports an increased number of handlers as soon as this error occurs for the "productionServiceName" but I'm unsure whether theere's a connection to the error
host > lsnrctl status
Service "productionServiceName" has 1 instance(s)
Instance "developmentName"status UNKNOWN, has 1 handler(s) for this service
ORA-1017...
host > lsnrctl status
Service "productionServiceName" has 2 instance(s)
Instance "developmentName"status UNKNOWN, has 1 handler(s) for this service
Instance "productionServiceName", status READY, has 2 handler(s) for this service
Thanks for any help

Very insightful response, thanks :|. I asked the same question of our administrator and she insists she changed nothing.
However, I found that dynamic service registration via PMON/service_names init parameter and what appears to be "load-balancing" is causing the 1017 error regardless of what I specify in the listener.ora. According to the oracle docs (link here) the dynamic service registration takes precedence over the static sid list entries in the listener.ora. The invalid username/password error was occurring because the "production instance" had remote_os_authent set to false, so as the uncontrollable load balance switch occurred the username of course is invalid.
I asked our administrator to set the remote_os_authent to true on the "production" instance and now i receive a different failure - intermittently - due to the absence of a collection object in that instance accessed during application launch.
Now to determine when the switch is occurring and control it OR find an alternative to allow constant jdbc configuration with a dynamically configured back-end...as well as to determine what allowed this to work in the first place?
My configuration was based on the statement in the listener.ora configuration documentation that says:
"Use the parameter GLOBAL_DBNAME to identify the database service.
While processing a client connection request, the listener tries to match the value of this parameter with the value of the SERVICE_NAME parameter in the client connect descriptor. If the client connect descriptor uses the SID parameter, then the listener does not attempt to map the values" It does go on to state this is mainly for Oracle8 , 7 but does not indicate issues with newer releases nor that it may be OBE.
****** SOLUTION I FOUND *********
is to use the new 11G parameter DEFAULT_SERVICE_<listener>=<serviceName> configuration in the listener.ora and to NOT specify a service in my jdbc connect string, jdbc:oracle:thin:@//host:port. This provides the functionality I need cleaner than the initial config -
Thanks to all who helped

Similar Messages

  • Listener ( lsnrctl ) - stop and start just one instance

    Hey all. I hava a Oracle 9.2 installed over a Linux Red Hat 4.0 64 bits server.
    Some Virtual Machines will connect in some databases installed in my Oracle server. My listener has one instance for each database like this:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = VM01)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM01)
    (SID_DESC =
    (GLOBAL_DBNAME = VM02)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM02)
    (SID_DESC =
    (GLOBAL_DBNAME = VM03)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM03)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = VM01))
    (ADDRESS = (PROTOCOL = IPC)(KEY = VM02))
    (ADDRESS = (PROTOCOL = IPC)(KEY = VM03))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1521))
    And my tnsnames:
    VM03 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = VM03)
    VM02 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1521))
    (CONNECT_DATA =
    (SID = VM02)
    VM01 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = VM01)
    I need to start and stop just one instance (VM01 or VM02 or VM03). I really can't stop all instances when I need to stop just one. And more if i have to create another instance i will have to stop the listener... and i can't because other people are using your instance...
    Do you know how to help me?
    Thanksssssss

    You still use listener.ora, just create 3 listeners, one for each instance:
    listener.ora:
    LISTENER_VM01 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(HOST = lab2)(KEY = VM01))
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1521))
    SID_LIST_LISTENER_VM01 =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = VM01)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM01)
    LISTENER_VM02 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(HOST = lab2)(KEY = VM02))
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1522))
    SID_LIST_LISTENER_VM02 =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = VM02)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM02)
    LISTENER_VM03 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(HOST = lab2)(KEY = VM03))
    (ADDRESS = (PROTOCOL = TCP)(HOST = lab2)(PORT = 1523))
    SID_LIST_LISTENER_VM03 =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = VM03)
    (ORACLE_HOME = /opt/oracle/product/9.2.0)
    (SID_NAME = VM03)
    Then, when you need to stop the connections to only one instance, you stop the corresponding listener:
    lsnrctl stop listener_vm02
    lsnrctl start listener_vm02
    For each instance you need to configure the parameter local_listener:
    sys@VM01> alter system set local_listener=listener_vm01;
    sys@VM02> alter system set local_listener=listener_vm02;
    sys@VM03> alter system set local_listener=listener_vm03;
    And register in tnsnames.ora:
    listener_vm01=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=lab2)(PORT=1521)))
    listener_vm02=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=lab2)(PORT=1522)))
    listener_vm03=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=lab2)(PORT=1523)))
    It's a recommended configuration for the flexibility it provides,it requires a different port for each listener, but you don't need to edit the listener.ora file each time you need to stop the connectivity to only one instance.

  • Stop start listener RAC

    Hi,
    DB : 10.2.0.4
    OS: AIX 5.3 L
    This is 2 node RAC on ASM with single standby on ASM.
    To stop listener in all RAC nodes , are the below steps correct?.
    crs_stop ora.rac1.LISTENER_rac1.lsnr
    crs_stop ora.rac2.LISTENER_rac2.lsnr
    OR
    srvctl stop listener -n rac1 -l ora.rac1.LISTENER_rac1.lsnr
    srvctl stop listener -n rac2 -l ora.rac2.LISTENER_rac2.lsnr
    Node1: rac1
    Node2: rac2
    Same i have to follow to start listener , start word in place of stop , right?.
    Please confirm me on this.
    Thanks,
    Sunand

    This is 2 node RAC on ASM with single standby on ASM.
    To stop listener in all RAC nodes , are the below steps correct?.
    crs_stop ora.rac1.LISTENER_rac1.lsnr
    crs_stop ora.rac2.LISTENER_rac2.lsnr
    OR
    srvctl stop listener -n rac1 -l ora.rac1.LISTENER_rac1.lsnr
    srvctl stop listener -n rac2 -l ora.rac2.LISTENER_rac2.lsnr
    Node1: rac1
    Node2: rac2
    Same i have to follow to start listener , start word in place of stop , right?.
    You should use the second option using srvctl.
    Because srvctl is meant for starting/stopping resources.
    Even using first command also you can achieve this and also using lsnrctl also. But I would prefer srvctl.
    Regards
    Rajesh

  • Stop/start logical standby db

    Version 10203 on AIX
    Have to stop/start logical standby db, new to data guard, Please confirm these are the steps to do that
    on primary db
    SQL > alter system switch logfile ;
    SQL > alter system archive log current ; ( to make sure current transactions come thru)
    check tail of alert log of standby to make sure these redologs shipped & mined
    standby db
    SQL> ALTER DATABASE STOP LOGICAL STANDBY APPLY; (stop SQL Apply)
    SQL> shutdown immediate;
    Lsnrctl stop listener_corp_remrpt-haprimary db
    SQL > shutdown immediate ;
    Lsnrctl stop listener_corp_remprd-ha
    Dont shutdown abort for any case, if both dbs are going down, first stop SQL apply on standby, take primary down and then take standby down)
    Startup
    primary
    SQL>startup;
    Lsnrctl start listener_corp_remprd-ha
    Standby
    SQL > startup
    SQL > alter database start logical standby apply immediate ;
    Lsnrctl start listener_corp_remrpt-ha

    Hi
    As you posted ,you are using Real Time Sql apply,So,it is LGWR who transfer changes to standby site.It is very safe to follow these steps for new user.
    1.Stop logical standby apply(Standby Database).
    2.Shutdown Primary Database.
    3.Shutdown logical standby Database.
    At startup
    1.Start Logical Standby Database.
    2.Start Primary Database.
    3.Start logical standby apply.
    At the case when primary database is taking long time to shutdown processed ,You can also use
    shutdown abort,but before doing abort be sure you have stop logical standby apply.When your primary database started,it automatically perform instance recovery.Primary site have to resolve gap in this case.
    At the case when you must have to perform shutdown abort at primary database,you can do it.By doing it you will not loose anything.Primary database has to resolve gap and it will take time to be consistent with primary site.
    Tinku

  • Script to automate stop/start listener on aix

    Hello everyone,
    We have a database on oracle 8i on aix platform and we have a scheduled restart on the db everyday. But we have been facing problem with the db restart and it gets hanged.
    As a solution, i wanted to develop a shell script that will stop the listener first before the db shut down.
    Can anyone help me please?

    If I remember correctly, example scripts to automate db and listener startup and shutdown are in the oracle 8i installation guide for your platform.
    The following should work:
    vi /etc/init.d/oracle
    ORACLE_HOME=your path to oracle home directory
    case "$1" in
        'start') 
             su - oracle -c "$ORACLE_HOME/bin/lsnrctl start"
             su - oracle -c "$ORACLE_HOME/bin/dbstart"
        'stop')  
             su - oracle -c "$ORACLE_HOME/bin/dbshut"
             su - oracle -c "$ORACLE_HOME/bin/lsnrctl stop"
    esacThen set execute privileges on the above file:
    chmod 750 oracle
    Next add the appropriate symbolic links:
    ln -s /etc/init.d/oracle /etc/rc.d/rc3.d/K01oracle
    ln -s /etc/init.d/oracle /etc/rc.d/rc3.d/S99oracle
    ln -s /etc/init.d/oracle /etc/rc.d/rc5.d/K01oracle
    ln -s /etc/init.d/oracle /etc/rc.d/rc5.d/S99oracle
    The oracle dbstart and dbshut scripts rely on entries in */etc/oratab*, so make sure you have a "Y" in the file for yes to autostart and auto shutdown.

  • Intermittent Ora-06502

    Hi,
    We have an intermittent Ora -06502 Error arising from our packages on our webpages.
    We have trace files and log files. But the error is not always reproducable but keeps on returning with different users on different times.
    We have put debugging messages inside the packages but keep on coming up empty handed. We have logged trace files but they are no avail either.
    Any help would be very appreciated.
    THNX
    We use an 8.1.6 database on unix.
    Below is the details of the error:
    Request Failed
    We were unable to process your request at this time.
    Error occured while accessing
    "/cv_app/www/cdew600$vrmn.actionview"
    at Sun Aug 12 20:01:34 2001
    OWS-05101: Execution failed due to Oracle error 6502
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at line 5
    PL/SQL Cartridge SERVICE: newmonday/webappl
    PROCEDURE: cdew600$vrmn.actionview
    PARAMETERS:
    ===========
    P_CDE_ID:
    11110397
    P_L_RVE5_DESCRIPTION:
    P_L_RVE7_DESCRIPTION:
    125-140
    P_CURRENT_HOLIDAYS:
    39
    P_BNT_STR:
    P_DCE_STR:
    P_L_RVE2_DESCRIPTION:
    P_L_RVE4_DESCRIPTION:
    140-155
    O_CDE_LCN_ID:
    4
    O_CCT_CDE_ID:
    11110397
    O_HEADER:
    O_DESCTEXT:
    O_PROMPT1:
    O_CURRENT_CONTRACT_TYPE:
    O_CURRENT_SALARY:
    O_CURRENT_HOLIDAYS:
    O_ID_RVE_BNT:
    O_ID_BTN_BNT:
    O_BNT_STR:
    O_PROMPT2:
    O_DCE_STR:
    O_DSE_CDE_ID:
    11110397
    O_DESIRED_TERMS_OF_EMPL:
    O_DESIRED_SALARY:
    O_ID_DCE_DCE:
    O_ID_RVE_DCE:
    Z_ACTION:
    CLEAR
    Z_CHK:
    55704
    Please try again later
    null

    hi,
    thanks for the reply. And the answer is Yes. Reloading the cartridge solves the problem. But the problem starts re-ocurring after a while again when we didn't change any packages or plsql code.
    How can we solve this caching problem?
    thanks.
    help is urgently needed

  • Oracle 10G : ORA-12500: TNS:listener failed to start a dedicated server pro

    When connecting to Oracle I am getting this error. I have restarted the database, restarted the listener, but the problem does not go away. I have increased the processes to 400.
    Error :
    ORA-12500: TNS:listener failed to start a dedicated server process
    listener.log :
    27-APR-2004 11:15:38 * (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=BUILD.OCS.COM)(CID=(PROGRAM=C:\oracle\product\10.1.0\db_1\bin\sqlplus.exe)(HOST=MA-BUILDENV1)(USER=nkancharla))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.180.112)(PORT=2265)) * establish * BUILD.OCS.COM * 12500
    TNS-12500: TNS:listener failed to start a dedicated server process
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    Listener.trc :
    [27-APR-2004 11:14:38:382] snttcallback: op = 5, bytes = 170, err = 0
    [27-APR-2004 11:14:38:382] ntt2err: soc 324 error - operation=5, ntresnt[0]=524, ntresnt[1]=997, ntresnt[2]=0
    [27-APR-2004 11:14:38:382] nsdo: 160 bytes from NS buffer
    [27-APR-2004 11:14:38:382] nsglgrDoRegister: inst loads: ld1:12 mld1:100 ld2:12 mld2:445
    [27-APR-2004 11:14:38:382] nsdo: 68 bytes to NS buffer
    [27-APR-2004 11:15:38:951] nsopen: opening transport...
    [27-APR-2004 11:15:38:951] nttcnp: Validnode Table IN use; err 0x0
    [27-APR-2004 11:15:38:951] nttcnp: getting sockname
    [27-APR-2004 11:15:38:951] nttcnr: waiting to accept a connection.
    [27-APR-2004 11:15:38:951] nttcnr: getting sockname
    [27-APR-2004 11:15:38:951] nttcnr: connected on ipaddr 192.168.180.112
    [27-APR-2004 11:15:38:951] nttvlser: valid node check on incoming node 192.168.180.112
    [27-APR-2004 11:15:38:951] nttvlser: Accepted Entry: 192.168.180.112
    [27-APR-2004 11:15:38:951] nttcon: set TCP_NODELAY on 288
    [27-APR-2004 11:15:38:951] nsopen: transport is open
    [27-APR-2004 11:15:38:951] nsnainit: inf->nsinfflg[0]: 0xd inf->nsinfflg[1]: 0xd
    [27-APR-2004 11:15:38:951] nsopen: global context check-in (to slot 7) complete
    [27-APR-2004 11:15:38:951] nsanswer: deferring connect attempt; at stage 5
    [27-APR-2004 11:15:38:951] nscon: doing connect handshake...
    [27-APR-2004 11:15:38:951] nscon: got NSPTCN packet
    [27-APR-2004 11:15:38:951] nsevdrcvreq: recving connect data
    [27-APR-2004 11:15:38:951] nsdo: 248 bytes from NS buffer
    [27-APR-2004 11:15:38:951] nsevdansw: exit
    [27-APR-2004 11:15:38:951] nsglbgetRSPidx: returning ecode=0
    [27-APR-2004 11:15:38:951] nsc2addr: (ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oraclebuild)(ARGS='(LOCAL=NO)'))
    [27-APR-2004 11:15:38:951] nsbeqaddr: connecting...
    [27-APR-2004 11:15:38:951] snlpcss: Unable to spawn Oracle oracle (LOCAL=NO) build, error 258.
    [27-APR-2004 11:15:38:951] nserror: nsres: id=7, op=72, ns=12560, ns2=0; nt[0]=530, nt[1]=0, nt[2]=0; ora[0]=0, ora[1]=0, ora[2]=0
    [27-APR-2004 11:15:38:951] nscon: sending NSPTRF packet
    [27-APR-2004 11:15:38:951] nstimarmed: no timer allocated
    [27-APR-2004 11:15:38:951] nsclose: closing transport
    [27-APR-2004 11:15:38:951] nsclose: global context check-out (from slot 7) complete
    [27-APR-2004 11:15:38:951] nsgldissolve: Deallocating cxd 0xd89e18.

    Listener.ora:
    lsncrtl status:
    LSNRCTL for 32-bit Windows: Version 10.1.0.2.0 - Production on 27-APR-2004 11:27:56
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.1.0.2.0 - Production
    Start Date 27-APR-2004 11:27:23
    Uptime 0 days 0 hr. 0 min. 33 sec
    Trace Level admin
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\oracle\product\10.1.0\db_1\network\admin\listener.ora
    Listener Log File C:\oracle\product\10.1.0\db_1\network\log\listener.log
    Listener Trace File C:\oracle\product\10.1.0\db_1\network\trace\listener.trc
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROCipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ma-buildenv1.ocs.open-channels.com)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ma-buildenv1.ocs.open-channels.com)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ma-buildenv1.ocs.open-channels.com)(PORT=2100))(Presentation=FTP)(Session=RAW))
    Services Summary...
    Service "BUILD" has 1 instance(s).
    Instance "BUILD", status UNKNOWN, has 1 handler(s) for this service...
    Service "BUILD.OCS.COM" has 1 instance(s).
    Instance "build", status READY, has 2 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    sqlnet.log:
    Fatal NI connect error 12500, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ma-buildenv1.ocs.open-channels.com)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=BUILD.OCS.COM)(CID=(PROGRAM=C:\oracle\product\10.1.0\db_1\bin\sqlplus.exe)(HOST=MA-BUILDENV1)(USER=nkancharla))))
    VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.1.0.2.0 - Production
         Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 10.1.0.2.0 - Production
    Time: 27-APR-2004 11:28:42
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12564
    TNS-12564: TNS:connection refused
    ns secondary err code: 0
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
    listener.log:
    27-APR-2004 11:28:42 * (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=BUILD.OCS.COM)(CID=(PROGRAM=C:\oracle\product\10.1.0\db_1\bin\sqlplus.exe)(HOST=MA-BUILDENV1)(USER=nkancharla))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.180.112)(PORT=2527)) * establish * BUILD.OCS.COM * 12500
    TNS-12500: TNS:listener failed to start a dedicated server process
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    listener.trc with ADMIN on:
    [27-APR-2004 11:28:42:011] nsevwait: 1 newly-posted event(s)
    [27-APR-2004 11:28:42:011] nsevfnt: cxd: 0xd3eed0 stage 0: NT events set:
         CONNECTION REQUEST
    [27-APR-2004 11:28:42:011] nsevfnt: cxd: 0xd3eed0 stage 0: NS events set:
         INCOMING CALL
    [27-APR-2004 11:28:42:011] nsevwait: event is 0x1, on 2
    [27-APR-2004 11:28:42:011] nsevwait: 1 posted event(s)
    [27-APR-2004 11:28:42:011] nsglhe: entry
    [27-APR-2004 11:28:42:011] nsmal: 536 bytes at 0xd7c1f0
    [27-APR-2004 11:28:42:011] nsmal: 1632 bytes at 0xd7e638
    [27-APR-2004 11:28:42:011] nsopen: opening transport...
    [27-APR-2004 11:28:42:011] nttcon: entry
    [27-APR-2004 11:28:42:011] nttcon: toc = 3
    [27-APR-2004 11:28:42:011] nttcnp: entry
    [27-APR-2004 11:28:42:011] ntvlin: entry
    [27-APR-2004 11:28:42:011] ntvlin: exit
    [27-APR-2004 11:28:42:011] nttcnp: Validnode Table IN use; err 0x0
    [27-APR-2004 11:28:42:011] nttcnp: getting sockname
    [27-APR-2004 11:28:42:011] nttcnp: exit
    [27-APR-2004 11:28:42:011] nttcnr: entry
    [27-APR-2004 11:28:42:011] nttcnr: waiting to accept a connection.
    [27-APR-2004 11:28:42:011] nttcnr: getting sockname
    [27-APR-2004 11:28:42:011] nttcnr: connected on ipaddr 192.168.180.112
    [27-APR-2004 11:28:42:011] nttvlser: entry
    [27-APR-2004 11:28:42:011] nttvlser: valid node check on incoming node 192.168.180.112
    [27-APR-2004 11:28:42:011] nttvlser: Accepted Entry: 192.168.180.112
    [27-APR-2004 11:28:42:011] nttcnr: exit
    [27-APR-2004 11:28:42:011] nttcon: set TCP_NODELAY on 248
    [27-APR-2004 11:28:42:011] nttcon: exit
    [27-APR-2004 11:28:42:011] nsopen: transport is open
    [27-APR-2004 11:28:42:011] nsnainit: answer
    [27-APR-2004 11:28:42:011] nsnasvnainfo: NA disabled for this connection
    [27-APR-2004 11:28:42:011] nainit: entry
    [27-APR-2004 11:28:42:011] nagblini: entry
    [27-APR-2004 11:28:42:011] nau_gin: entry
    [27-APR-2004 11:28:42:011] nau_gparams: entry
    [27-APR-2004 11:28:42:011] nam_gbp: Reading parameter "sqlnet.authentication_required" from parameter file
    [27-APR-2004 11:28:42:011] nam_gbp: Parameter not found
    [27-APR-2004 11:28:42:011] nau_gparams: Using default value "FALSE"
    [27-APR-2004 11:28:42:011] nau_gslf: entry
    [27-APR-2004 11:28:42:011] nam_gic: entry
    [27-APR-2004 11:28:42:011] nam_gic: Counting # of items in "sqlnet.authentication_services" parameter
    [27-APR-2004 11:28:42:011] nam_gic: Parameter not found
    [27-APR-2004 11:28:42:011] nam_gic: Found 0 items
    [27-APR-2004 11:28:42:011] nam_gic: exit
    [27-APR-2004 11:28:42:011] nau_gslf: Using default value "all available adapters"
    [27-APR-2004 11:28:42:011] nauss_set_state: entry
    [27-APR-2004 11:28:42:011] nauss_set_state: exit
    [27-APR-2004 11:28:42:011] nau_gslf: exit
    [27-APR-2004 11:28:42:011] nau_gparams: exit
    [27-APR-2004 11:28:42:011] nau_gin: exit
    [27-APR-2004 11:28:42:011] nagblini: exit
    [27-APR-2004 11:28:42:011] na_saveprot: entry
    [27-APR-2004 11:28:42:011] na_saveprot: exit
    [27-APR-2004 11:28:42:011] nacomin: entry
    [27-APR-2004 11:28:42:011] nas_init: entry
    [27-APR-2004 11:28:42:011] nas_init: exit
    [27-APR-2004 11:28:42:011] nau_ini: entry
    [27-APR-2004 11:28:42:011] naugcp_get_connect_parameters: entry
    [27-APR-2004 11:28:42:011] nauss_set_state: entry
    [27-APR-2004 11:28:42:011] nauss_set_state: exit
    [27-APR-2004 11:28:42:011] naugcp_get_connect_parameters: exit
    [27-APR-2004 11:28:42:011] nau_gettab: entry
    [27-APR-2004 11:28:42:011] nau_gettab: exit
    [27-APR-2004 11:28:42:011] nau_sini: entry
    [27-APR-2004 11:28:42:011] nau_sini: exit
    [27-APR-2004 11:28:42:011] nau_ini: exit
    [27-APR-2004 11:28:42:011] naeeinit: entry
    [27-APR-2004 11:28:42:011] nam_gbp: Reading parameter "SQLNET.FIPS_140" from parameter file
    [27-APR-2004 11:28:42:011] nam_gbp: Parameter not found
    [27-APR-2004 11:28:42:011] nam_gnsp: Reading parameter "SQLNET.ENCRYPTION_SERVER" from parameter file
    [27-APR-2004 11:28:42:011] nam_gnsp: Parameter not found
    [27-APR-2004 11:28:42:011] naequad: Using default value "ACCEPTED"
    [27-APR-2004 11:28:42:011] nam_gic: entry
    [27-APR-2004 11:28:42:011] nam_gic: Counting # of items in "SQLNET.ENCRYPTION_TYPES_SERVER" parameter
    [27-APR-2004 11:28:42:011] nam_gic: Parameter not found
    [27-APR-2004 11:28:42:011] nam_gic: exit
    [27-APR-2004 11:28:42:011] naesno: Using default value "all available algorithms"
    [27-APR-2004 11:28:42:011] naeshow: entry
    [27-APR-2004 11:28:42:011] naeshow: exit
    [27-APR-2004 11:28:42:011] naeeinit: exit
    [27-APR-2004 11:28:42:011] naecinit: entry
    [27-APR-2004 11:28:42:011] nam_gnsp: Reading parameter "SQLNET.CRYPTO_CHECKSUM_SERVER" from parameter file
    [27-APR-2004 11:28:42:011] nam_gnsp: Parameter not found
    [27-APR-2004 11:28:42:011] naequad: Using default value "ACCEPTED"
    [27-APR-2004 11:28:42:011] nam_gic: entry
    [27-APR-2004 11:28:42:011] nam_gic: Counting # of items in "SQLNET.CRYPTO_CHECKSUM_TYPES_SERVER" parameter
    [27-APR-2004 11:28:42:011] nam_gic: Parameter not found
    [27-APR-2004 11:28:42:011] nam_gic: exit
    [27-APR-2004 11:28:42:011] naesno: Using default value "all available algorithms"
    [27-APR-2004 11:28:42:011] naeshow: entry
    [27-APR-2004 11:28:42:011] naeshow: exit
    [27-APR-2004 11:28:42:011] naecinit: exit
    [27-APR-2004 11:28:42:011] nadisc: entry
    [27-APR-2004 11:28:42:011] nacomtm: entry
    [27-APR-2004 11:28:42:011] nacompd: entry
    [27-APR-2004 11:28:42:011] nacompd: exit
    [27-APR-2004 11:28:42:011] nacompd: entry
    [27-APR-2004 11:28:42:011] nacompd: exit
    [27-APR-2004 11:28:42:011] nacomtm: exit
    [27-APR-2004 11:28:42:011] nas_dis: entry
    [27-APR-2004 11:28:42:011] nas_dis: exit
    [27-APR-2004 11:28:42:011] nau_dis: entry
    [27-APR-2004 11:28:42:011] nau_dis: exit
    [27-APR-2004 11:28:42:011] naeetrm: entry
    [27-APR-2004 11:28:42:011] naeetrm: exit
    [27-APR-2004 11:28:42:011] naectrm: entry
    [27-APR-2004 11:28:42:011] naectrm: exit
    [27-APR-2004 11:28:42:011] nagbltrm: entry
    [27-APR-2004 11:28:42:011] nau_gtm: entry
    [27-APR-2004 11:28:42:011] nau_gtm: exit
    [27-APR-2004 11:28:42:011] nagbltrm: exit
    [27-APR-2004 11:28:42:011] nadisc: exit
    [27-APR-2004 11:28:42:011] nainit: exit
    [27-APR-2004 11:28:42:011] nsnainit: NS Connection version: 313
    [27-APR-2004 11:28:42:011] nsnainit: inf->nsinfflg[0]: 0xd inf->nsinfflg[1]: 0xd
    [27-APR-2004 11:28:42:011] 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
    [27-APR-2004 11:28:42:011] 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
    [27-APR-2004 11:28:42:011] nsopen: global context check-in (to slot 7) complete
    [27-APR-2004 11:28:42:011] nsopen: lcl[0]=0x34ffefff, lcl[1]=0x12003, gbl[0]=0x7abf, gbl[1]=0x2001, tdu=32767, sdu=8192
    [27-APR-2004 11:28:42:011] nsdo: cid=7, opcode=65, bl=0, what=0, uflgs=0x0, cflgs=0x2
    [27-APR-2004 11:28:42:011] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsdo: nsctx: state=7, flg=0x4000, mvd=0
    [27-APR-2004 11:28:42:011] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsanswer: deferring connect attempt; at stage 5
    [27-APR-2004 11:28:42:011] nsevreg: begin registration process for 7
    [27-APR-2004 11:28:42:011] nsevreg: sgt=0, evn=4, evt[2]=0x0
    [27-APR-2004 11:28:42:011] nsevreg: begin notification process for 7
    [27-APR-2004 11:28:42:011] nsrah: setting transport read mode (2)
    [27-APR-2004 11:28:42:011] nttctl: entry
    [27-APR-2004 11:28:42:011] nttctl: Clearing non-blocking mode
    [27-APR-2004 11:28:42:011] nttctl: entry
    [27-APR-2004 11:28:42:011] nttctl: Setting connection into async mode
    [27-APR-2004 11:28:42:011] nsevreg: rdm=2, sgt=0, evt[0]=0x20, [1]=0x20, [2]=0x0, nrg=0
    [27-APR-2004 11:28:42:011] nsevreg: registering for 0x20
    [27-APR-2004 11:28:42:011] nttmrd: entry
    [27-APR-2004 11:28:42:011] nttrd: entry
    [27-APR-2004 11:28:42:011] snttcallback: entry
    [27-APR-2004 11:28:42:011] snttcallback: exit
    [27-APR-2004 11:28:42:011] nttrd: socket 248 had bytes read=316
    [27-APR-2004 11:28:42:011] nttrd: exit
    [27-APR-2004 11:28:42:011] nsglhe: exit
    [27-APR-2004 11:28:42:011] nsevwait: 7 registered connection(s)
    [27-APR-2004 11:28:42:011] nsevwait: 1 pre-posted event(s)
    [27-APR-2004 11:28:42:011] nsevwait: waiting for transport event (0 thru 7)...
    [27-APR-2004 11:28:42:011] nsevwait: 0 newly-posted event(s)
    [27-APR-2004 11:28:42:011] nsevwait: 1 pre-posted event(s)
    [27-APR-2004 11:28:42:011] nsevdansw: at STAGE 5
    [27-APR-2004 11:28:42:011] nsdo: cid=7, opcode=68, bl=2040, what=8, uflgs=0x0, cflgs=0x3
    [27-APR-2004 11:28:42:011] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsdo: nsctx: state=14, flg=0x4004, mvd=0
    [27-APR-2004 11:28:42:011] nsdo: gtn=10, gtc=10, ptn=10, ptc=8155
    [27-APR-2004 11:28:42:011] nscon: doing connect handshake...
    [27-APR-2004 11:28:42:011] nscon: recving a packet
    [27-APR-2004 11:28:42:011] nsprecv: 316 bytes from leftover
    [27-APR-2004 11:28:42:011] nsprecv: tlen=316, plen=58, type=1
    [27-APR-2004 11:28:42:011] nsprecv: 258 bytes to leftover
    [27-APR-2004 11:28:42:011] nscon: got NSPTCN packet
    [27-APR-2004 11:28:42:011] nsconneg: vsn=313, lov=300, opt=0x0, sdu=2048, tdu=32767, ntc=0x860e
    [27-APR-2004 11:28:42:011] nsconneg: vsn=313, gbl=0x1, sdu=2048, tdu=32767
    [27-APR-2004 11:28:42:011] nscon: got 248 bytes connect data
    [27-APR-2004 11:28:42:011] nscon: got 248 bytes connect data
    [27-APR-2004 11:28:42:011] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsevdrcvreq: recving connect data
    [27-APR-2004 11:28:42:011] nsdo: cid=7, opcode=68, bl=248, what=1, uflgs=0x4001, cflgs=0x0
    [27-APR-2004 11:28:42:011] nsdo: nsctx: state=2, flg=0x4004, mvd=0
    [27-APR-2004 11:28:42:011] nsdo: gtn=58, gtc=58, ptn=10, ptc=2011
    [27-APR-2004 11:28:42:011] nsrdr: recving a packet
    [27-APR-2004 11:28:42:011] nsprecv: 258 bytes from leftover
    [27-APR-2004 11:28:42:011] nsprecv: tlen=258, plen=258, type=6
    [27-APR-2004 11:28:42:011] nsrdr: got NSPTDA packet
    [27-APR-2004 11:28:42:011] nsrdr: NSPTDA flags: 0x0
    [27-APR-2004 11:28:42:011] nsdo: what=1, bl=248
    [27-APR-2004 11:28:42:011] nsdo: 248 bytes from NS buffer
    [27-APR-2004 11:28:42:011] nsevdrcvreq: got 248 bytes connect data
    [27-APR-2004 11:28:42:011] nsevdansw: exit
    [27-APR-2004 11:28:42:011] nsevwait: event is 0x20, on 7
    [27-APR-2004 11:28:42:011] nsevwait: 1 posted event(s)
    [27-APR-2004 11:28:42:011] nsglhe: entry
    [27-APR-2004 11:28:42:011] nsglfc: Assume establishing a connection...
    [27-APR-2004 11:28:42:011] nsglfc: command = establish
    [27-APR-2004 11:28:42:011] nsglauthorized: entry
    [27-APR-2004 11:28:42:011] nsglecmd: entry
    [27-APR-2004 11:28:42:011] nttaddr2bnd: entry
    [27-APR-2004 11:28:42:011] nttaddr2bnd: exit
    [27-APR-2004 11:28:42:011] nsglbgetRSPidx: entry
    [27-APR-2004 11:28:42:011] nsglbgetRSPidx: returning ecode=0
    [27-APR-2004 11:28:42:011] nsglbgetRSPidx: exit
    [27-APR-2004 11:28:42:011] nsglb: entry
    [27-APR-2004 11:28:42:011] nsglb: exit
    [27-APR-2004 11:28:42:011] nsc2addr: (ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oraclebuild)(ARGS='(LOCAL=NO)'))
    [27-APR-2004 11:28:42:011] nlpcaini: entry
    [27-APR-2004 11:28:42:011] nlpcaini: prg = oracle
    [27-APR-2004 11:28:42:011] nlpcaini: arg[0] = oraclebuild
    [27-APR-2004 11:28:42:011] nlpcaini: arg[1] = (LOCAL=NO)
    [27-APR-2004 11:28:42:011] nlpcaini: exit
    [27-APR-2004 11:28:42:011] nsbeqaddr: connecting...
    [27-APR-2004 11:28:42:011] ntpcon: entry
    [27-APR-2004 11:28:42:011] ntpcon: toc = 1
    [27-APR-2004 11:28:42:011] sntpcall: entry
    [27-APR-2004 11:28:42:011] snlpcss: entry
    [27-APR-2004 11:28:42:011] snlpcss: Unable to spawn Oracle oracle (LOCAL=NO) build, error 258.
    [27-APR-2004 11:28:42:011] sntpcall: exit
    [27-APR-2004 11:28:42:011] ntpcon: exit
    [27-APR-2004 11:28:42:011] nserror: nsres: id=7, op=72, ns=12560, ns2=0; nt[0]=530, nt[1]=0, nt[2]=0; ora[0]=0, ora[1]=0, ora[2]=0
    [27-APR-2004 11:28:42:011] nsglrespond: entry
    [27-APR-2004 11:28:42:011] nsdo: cid=7, opcode=67, bl=161, what=10, uflgs=0x0, cflgs=0x3
    [27-APR-2004 11:28:42:011] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsdo: nsctx: state=2, flg=0x4004, mvd=0
    [27-APR-2004 11:28:42:011] nsdo: gtn=258, gtc=258, ptn=10, ptc=2011
    [27-APR-2004 11:28:42:011] nscon: sending NSPTRF packet
    [27-APR-2004 11:28:42:011] nspsend: plen=173, type=4
    [27-APR-2004 11:28:42:011] nttmwr: entry
    [27-APR-2004 11:28:42:011] nttwr: entry
    [27-APR-2004 11:28:42:011] snttcallback: entry
    [27-APR-2004 11:28:42:011] snttcallback: exit
    [27-APR-2004 11:28:42:011] nttwr: socket 248 had bytes written=173
    [27-APR-2004 11:28:42:011] nttwr: exit
    [27-APR-2004 11:28:42:011] nspsend: 173 bytes to transport
    [27-APR-2004 11:28:42:011] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:42:011] nstimarmed: no timer allocated
    [27-APR-2004 11:28:42:011] nttctl: entry
    [27-APR-2004 11:28:42:011] nttctl: entry
    [27-APR-2004 11:28:42:011] nsdo: cid=7, opcode=66, bl=0, what=0, uflgs=0x0, cflgs=0x2
    [27-APR-2004 11:28:42:011] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsdo: nsctx: state=2, flg=0x4000, mvd=0
    [27-APR-2004 11:28:42:011] nsevunreg: cid=7, sgt=0, rdm=2
    [27-APR-2004 11:28:42:011] nsrah: re-setting transport read mode
    [27-APR-2004 11:28:42:011] nttctl: entry
    [27-APR-2004 11:28:42:011] nttctl: Clearing async mode
    [27-APR-2004 11:28:42:011] nsevunreg: 6 registered connection(s)
    [27-APR-2004 11:28:42:011] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:42:011] nsclose: closing transport
    [27-APR-2004 11:28:42:011] nttdisc: entry
    [27-APR-2004 11:28:42:011] nttdisc: Closed socket 248
    [27-APR-2004 11:28:42:011] nttdisc: exit
    [27-APR-2004 11:28:42:011] nsclose: global context check-out (from slot 7) complete
    [27-APR-2004 11:28:42:011] nsmfr: 1632 bytes at 0xd7e638
    [27-APR-2004 11:28:42:011] nsmfr: 536 bytes at 0xd7c1f0
    [27-APR-2004 11:28:42:011] nsgldissolve: entry
    [27-APR-2004 11:28:42:011] nsgldissolve: Deallocating cxd 0xd7c608.
    [27-APR-2004 11:28:42:011] nsgldissolve: exit
    [27-APR-2004 11:28:42:011] nsglrespond: exit
    [27-APR-2004 11:28:42:011] nsglecmd: exit
    [27-APR-2004 11:28:42:011] nsglhe: exit
    [27-APR-2004 11:28:42:011] nsevwait: 6 registered connection(s)
    [27-APR-2004 11:28:42:011] nsevwait: 0 pre-posted event(s)
    [27-APR-2004 11:28:42:011] nsevwait: waiting for transport event (0 thru 6)...
    [27-APR-2004 11:28:45:136] snttcallback: entry
    [27-APR-2004 11:28:45:136] snttcallback: op = 5, bytes = 170, err = 0
    [27-APR-2004 11:28:45:136] snttcallback: exit
    [27-APR-2004 11:28:45:136] nsevwait: 0 newly-posted event(s)
    [27-APR-2004 11:28:45:136] nsevfnt: cxd: 0xd597c8 stage 0: NT events set:
         READ
    [27-APR-2004 11:28:45:136] nsevfnt: cxd: 0xd597c8 stage 0: NS events set:
         INCOMING SEND
    [27-APR-2004 11:28:45:136] nsevwait: event is 0x2, on 4
    [27-APR-2004 11:28:45:136] nsevwait: 1 posted event(s)
    [27-APR-2004 11:28:45:136] nsglhe: entry
    [27-APR-2004 11:28:45:136] nsglrohe: entry
    [27-APR-2004 11:28:45:136] nsdo: cid=4, opcode=68, bl=8196, what=0, uflgs=0x0, cflgs=0x3
    [27-APR-2004 11:28:45:136] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:45:136] nsdo: nsctx: state=8, flg=0x400c, mvd=0
    [27-APR-2004 11:28:45:136] nsdo: gtn=258, gtc=258, ptn=10, ptc=8155
    [27-APR-2004 11:28:45:136] nsrdr: recving a packet
    [27-APR-2004 11:28:45:136] nsprecv: 170 bytes from leftover
    [27-APR-2004 11:28:45:136] nsprecv: tlen=170, plen=170, type=6
    [27-APR-2004 11:28:45:136] nttmrd: entry
    [27-APR-2004 11:28:45:136] nttrd: entry
    [27-APR-2004 11:28:45:136] ntt2err: entry
    [27-APR-2004 11:28:45:136] ntt2err: soc 296 error - operation=5, ntresnt[0]=524, ntresnt[1]=997, ntresnt[2]=0
    [27-APR-2004 11:28:45:136] ntt2err: exit
    [27-APR-2004 11:28:45:136] nttrd: exit
    [27-APR-2004 11:28:45:136] nsrdr: got NSPTDA packet
    [27-APR-2004 11:28:45:136] nsrdr: NSPTDA flags: 0x0
    [27-APR-2004 11:28:45:136] nsdo: what=1, bl=8196
    [27-APR-2004 11:28:45:136] nsdo: 160 bytes from NS buffer
    [27-APR-2004 11:28:45:136] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:45:136] nsglgrDoRegister: inst loads: ld1:51 mld1:100 ld2:12 mld2:445
    [27-APR-2004 11:28:45:136] nsglgrDoRegister: exit
    [27-APR-2004 11:28:45:136] nsdo: cid=4, opcode=67, bl=68, what=1, uflgs=0x2, cflgs=0x3
    [27-APR-2004 11:28:45:136] nsdo: rank=64, nsctxrnk=0
    [27-APR-2004 11:28:45:136] nsdo: nsctx: state=8, flg=0x400c, mvd=0
    [27-APR-2004 11:28:45:136] nsdo: gtn=170, gtc=170, ptn=10, ptc=8155
    [27-APR-2004 11:28:45:136] nsdo: 68 bytes to NS buffer
    [27-APR-2004 11:28:45:136] nsdofls: DATA flags: 0x0
    [27-APR-2004 11:28:45:136] nsdofls: sending NSPTDA packet
    [27-APR-2004 11:28:45:136] nspsend: plen=78, type=6
    [27-APR-2004 11:28:45:136] nttmwr: entry
    [27-APR-2004 11:28:45:136] nttwr: entry
    [27-APR-2004 11:28:45:136] snttcallback: entry
    [27-APR-2004 11:28:45:136] snttcallback: exit
    [27-APR-2004 11:28:45:136] nttwr: socket 296 had bytes written=78
    [27-APR-2004 11:28:45:136] nttwr: exit
    [27-APR-2004 11:28:45:136] nspsend: 78 bytes to transport
    [27-APR-2004 11:28:45:136] nsdoacts: flushing transport
    [27-APR-2004 11:28:45:136] nttctl: entry
    [27-APR-2004 11:28:45:136] nsdo: nsctxrnk=0
    [27-APR-2004 11:28:45:136] nsglroHandleError: exit
    [27-APR-2004 11:28:45:136] nsglrohe: exit
    [27-APR-2004 11:28:45:136] nsglhe: exit
    [27-APR-2004 11:28:45:136] nsevwait: 6 registered connection(s)
    [27-APR-2004 11:28:45:136] nsevwait: 0 pre-posted event(s)
    [27-APR-2004 11:28:45:136] nsevwait: waiting for transport event (0 thru 6)...

  • Orarun rpm, stop/start scripts for tiers

    Is anyone using the orarun rpm? If so, how do you startup your tiers? I have the metalink note 211497.1, an oracle sales person gave me it since I am evaluating OCS and can't have a metalink account. I was able to successfully install all 3 tiers finally and I had to powerdown because electricians were coming in. Now I can't even bring up the ifrastructure tier using the commands. Someone help please. Thanks for any input.

    here u r the note
    How to start/stop components of Collaboration Suite
    PURPOSE
    Helping to start and stop all components of Collaboration Suite
    SCOPE & APPLICATION
    All administrators and consultants working with Collaboration Suite
    HOW TO START/STOP COLLABORATION SUITE
    There are several steps for starting and stopping Collaboration Suite
    components.
    Here you can find examples how to start and stop infrastructure,
    database and middletier components seperately
    1) INFRASTRUCTURE
    Please check first, which of the components you have configured
    ----infraenv begin----
    export ORACLE_BASE=<your ORACLE_BASE, e.g: /u01/oracle>
    export ORACLE_HOME=<your ORACLE_HOME, e.g: /u01/oracle/product/infra>
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/opmn/bin:/usr/local/bin:$PATH
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/ctx/lib:$LD_LIBRARY_PATH
    export NLS_LANG=<your NLS setting, e.g: american_america.UTF8>
    export ORACLE_SID=iasdb
    export TNS_ADMIN=$ORACLE_HOME/network/admin
    export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    ----infraenv end------
    ----infrastart begin----
    # starting infrastructure components:
    # get env
    . ./infraenv
    ALTDISP=$DISPLAY
    export DISPLAY=localhost:0.0
    # listener starting
    lsnrctl start
    # listener checking
    lsnrctl status
    # database starting (refers to ORACLE_SID setting in infraenv)
    sqlplus "/ as sysdba" <<!
    startup
    # OID starting
    oidmon connect=iasdb start
    sleep 5
    oidctl connect=iasdb server=oidldapd instance=1 start
    # HTTP and OC4J starting
    dcmctl shell <<!
    getState -v
    start -v -ct ohs
    start -v -co OC4J_DAS
    getState -v
    # Webcache start (only necessary for portal)
    webcachectl start
    # OPMN start (sometimes necessary, please try first without it)
    opmnctl startall
    # EMD starting (not needed for OID, only for web administration)
    emctl start
    export DISPLAY=$ALTDISP
    ----infrastart end------
    ----infrastop begin----
    # stopping infrastructure components
    # get env
    . ./infraenv
    ALTDISP=$DISPLAY
    export DISPLAY=localhost:0.0
    # EMD stopping (not needed for OID, only for web administration)
    # setting pw variable to avoid emctl asking for pw
    export EM_ADMIN_PWD=<ias_admin_password>
    emctl stop
    # Webcache stop
    webcachectl stop
    # HTTP and OC4J stopping
    dcmctl shell <<!
    getState -v
    stop -v -ct ohs
    stop -v -co OC4J_DAS
    getState -v
    # OPMN stop (to stop opmn and his shadow process)
    opmnctl stopall
    # OID stopping
    oidctl connect=iasdb server=oidldapd instance=1 stop
    sleep 5
    oidmon connect=iasdb stop
    # listener stopping
    lsnrctl stop
    # database stopping
    sqlplus "/ as sysdba" <<!
    shutdown immediate
    export DISPLAY=$ALTDISP
    ----infrastop end------
    2) STORAGE
    If there are different databases for mailstore and Files, then each of them
    needs these scripts
    ----dbenv begin------
    export ORACLE_BASE=<your ORACLE_BASE, e.g. /u01/oracle>
    export ORACLE_HOME=<your ORACLE_HOME, e.g. /u01/oracle/product/storage>
    export PATH=$ORACLE_HOME/bin:/usr/local/bin:$PATH
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/ctx/lib:$LD_LIBRARY_PATH
    export NLS_LANG=<your NLS setting, e.g. american_america.UTF8>
    export ORACLE_SID=<your SID, e.g. OCS>
    export TNS_ADMIN=$ORACLE_HOME/network/admin
    export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    ----dbenv end--------
    ----dbstart begin------
    # starting storage components
    # get env
    . ./dbenv
    # listener starting
    lsnrctl start
    # listener checking
    lsnrctl status
    # database starting
    sqlplus "/ as sysdba" <<!
    startup
    ----dbstart end--------
    ----dbstop begin------
    # stopping storage components
    # get env
    . ./dbenv
    # listener stopping
    lsnrctl stop
    # database stopping
    sqlplus "/ as sysdba" <<!
    shutdown immediate
    ----dbstop end--------
    3) MIDTIER COMPONENTS
    first of all start Calendar and Files before the other components always
    (both of them as root !)
    switch from oracle with environment set (see below) to root with 'su'
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    cd /users/unison/bin
    ./unistart
    cd $ORACLE_HOME/ifs/files/bin
    ./ifsctl start
    check <Note.205298.1> Considerations how to start UM listener as oracle
    to see, if you can start listener_es as oracle (as desribed below) or not
    ----midenv begin------
    export ORACLE_BASE=<your ORACLE_BASE, e.g. /u01/oracle>
    export ORACLE_HOME=<your ORACLE_HOME, e.g. /u01/oracle/product/midtier>
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/opmn/bin:/usr/local/bin:$PATH
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/ctx/lib:$LD_LIBRARY_PATH
    export NLS_LANG=<your NLS setting, e.g. american_america.UTF8>
    export TNS_ADMIN=$ORACLE_HOME/network/admin
    export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    ----midenv end--------
    ----midstart begin------
    # starting midtier components
    # get env
    . ./midenv
    # UM listener_es start
    lsnrctl start listener_es
    dcmctl shell <<!
    getState -v
    start -v -ct ohs
    start -v -co OC4J_Portal
    start -v -co OC4J_UM
    start -v -co OC4J_iFS_files
    getState -v
    # Webcache start (if configured, but not started, OC4J may fail)
    webcachectl start
    # EMD (if installed and enabled)
    emctl start
    # UM processes
    oesctl startup midtierhost:um_system:smtp_in
    oesctl startup midtierhost:um_system:smtp_out
    oesctl startup midtierhost:um_system:imap
    oesctl startup midtierhost:um_system:gc
    oesctl startup midtierhost:um_system:list
    oesctl startup midtierhost:um_system:pop
    ----midstart end--------
    ----midstop begin------
    # stopping midtier components
    # get env
    . ./midenv
    export password=oracle1
    export myprompt=false
    export prompt=false
    ifsctl stop
    oesctl shutdown sniprim2:um_system:smtp_in
    oesctl shutdown sniprim2:um_system:smtp_out
    oesctl shutdown sniprim2:um_system:imap
    oesctl shutdown sniprim2:um_system:gc
    oesctl shutdown sniprim2:um_system:list
    oesctl shutdown sniprim2:um_system:pop
    lsnrctl stop listener_es
    # Webcache stop
    webcachectl stop
    dcmctl shell <<!
    getState -v
    stop -v -ct ohs
    stop -v -co OC4J_Portal
    stop -v -co OC4J_UM
    stop -v -co OC4J_iFS_files
    getState -v
    opmnctl stopall
    ----midstop end--------

  • HTMLDB ORA-1017 with a twist

    hi
    we've installed HTMLDB on Linux several times and got it working eventually. i've read all the FAQ (i think!). But on this most recent installation of HTMLDB on linux redhat I have encountered a problem I cannot fix or find any solution to.
    We complete a full and error-free install.
    But I am getting an error when I try to load the HTMLDB admin pages.
    http:\\server:7779 - gives me the welcome page
    http:\\server:7779\pls\htmldb - gives me
    403 - Forbidden - You don't have permission to access /pls/htmldb/htmldb on this server.
    The apache log line reads:
    [Tue Mar 21 14:00:24 2006] [notice] Accept mutex: fcntl (Default: sysvsem)
    [Tue Mar 21 14:00:30 2006] [error] [client 192.168.1.211] [ecid: 1142949629:127.0.0.1:20856:0:2,0] mod_plsql: /pls/htmldb/htmldb HTTP-403 ORA-1017
    So there is my ORA-1017 error, which implies that the HTMLDB_PUBLIC_USER password is wrong. So i do the following:
    1) ALTER USER on the database, reset the password to a simple string.
    2) Supply the same password in the marvel.conf just to get it to work.
    3) restart apache
    BUT I still get ORA-1017!!!!! grrrrrrrr! no change apparent.
    note:
    1) There are no other databases on this machine.
    2) The service name provided is correct (if i change it in marvel to an invalid setting, i get a page reading 'Service Unavailable', naturally).
    3) sqlplus works for the username/password.
    Why would I be able to connect using sqlplus but HTMLDB is getting ORA-1017 using the SAME username/password?
    any clues or suggestions would be great.
    is is possible that it thinks my new password is still encrypted? it is now plain text.
    please help everyone - cheers

    god bless metalink. I TOLE you this wasn't a problem with HTMLDB!! :-)
    I am posting the solution here for the benefit of future generations (why do so few poeple ever bother doing this).
    the problem was in the database install and the way HTTP works; HTMLDB was an innocent victim.
    here is the solution taken from Note:341694.1
    very happy - cheers everyone and thanks for the comments, made sure i wasnt going mad.
    thanks again
    Kevin
    NLS_LANG was not set before starting the HTTP Server.
    NLS_LANG needs to be set in the environment of the user that started OPMN to the same character
    set as the database character set.
    See also the following note:
    Note 299979.1 - ORASSO Fails With HTTP-403 Forbidden
    SolutionTo implement the solution, please execute the following steps:
    1. Get the NLS_LANG setting of your Portal database using the following query:
    sqlplus system/<password>
    SQL> select * from nls_database_parameters
    where parameter in ('NLS_LANGUAGE','NLS_TERRITORY','NLS_CHARACTERSET');
    2. Set the NLS_LANG using the values returned in step 1:
    i.e: export NLS_LANG=AMERICAN_AMERICA.AL32UTF8
    3. Restart the HTTP Server in the same shell:
    opmnctl stopproc process-type=HTTP_Server
    opmnctl startproc process-type=HTTP_Server

  • LSNRCTL STOP hang.

    When I run the command, 'lsnrctl stop' to stop listerner. The listener stopped well but the command did not end.
    I could recognize following error using ktrace.
    556 lsnrctl NAMI "/Users/oracle/10g/oracle/lib/libociei.dylib"
    556 lsnrctl RET open -1 errno 2 No such file or directory
    556 lsnrctl CALL close(0xffffffff)
    556 lsnrctl RET close -1 errno 9 Bad file descriptor
    556 lsnrctl CALL open(0xbfffc260,0,0)
    556 lsnrctl NAMI "/Users/oracle/10g/oracle/rdbms/lib/libociei.dylib"
    556 lsnrctl RET open -1 errno 2 No such file or directory
    556 lsnrctl CALL close(0xffffffff)
    556 lsnrctl RET close -1 errno 9 Bad file descriptor
    556 lsnrctl CALL open(0xbfffc280,0,0)
    556 lsnrctl NAMI "/libociei.dylib"
    556 lsnrctl RET open -1 errno 2 No such file or directory
    556 lsnrctl CALL close(0xffffffff)
    556 lsnrctl RET close -1 errno 9 Bad file descriptor
    556 lsnrctl CALL open(0x4026d0,0,0)
    556 lsnrctl NAMI "libociei.dylib"
    556 lsnrctl RET open -1 errno 2 No such file or directory
    556 lsnrctl CALL close(0xffffffff)
    556 lsnrctl RET close -1 errno 9 Bad file descriptor
    556 lsnrctl CALL open(0xbfffc270,0,0)
    556 lsnrctl NAMI "/Users/oracle/lib/libociei.dylib"
    556 lsnrctl RET open -1 errno 2 No such file or directory
    556 lsnrctl CALL close(0xffffffff)
    556 lsnrctl RET close -1 errno 9 Bad file descriptor
    Could not find out the 'libociei.dylib'.
    Thanks in advance.

    Hi
    beforem issuing the lsnrctl stop command try the following:
    onsctl start
    lsnrctl stop
    onsctl stop
    This is a known issue and has been on the forum before. I hope it helps
    Paul.

  • TS3694 My Ipod is not recognized by Itunes with my Windows 8 PC. Works fine with Windows 7 PC. Device sync test says "No device found". Already performed all of the Ipod device troubleshooting including reload Itunes, stop start Ipod device, changed drive

    Need help? Some of my Ipods are not recognized by Itunes with my Windows 8 PC. (Ipod Nano 4th gen  and Ipod Nano 6th gen), but on my Windows 7 PC, they work fine.  My Ipod 3rd gen and Ipod shuffle work both on Windows 8 and 7 PC's.  On the non-working Ipods, the  Device sync test says "No device found". Already performed all of the Ipod device troubleshooting including reload Itunes, stop start Ipod device, changed drive letter...
    any help is appreciated. Chris4sail

    Hello there, chris4sail.
    The following Knowledge Base article offers up some great step-by-step instructions on troubleshooting your iPod not being recognized in iTunes:
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Essbase Dimension build error and Unable to Stop/Start Application

    Hi All,
    I am trying to build the dimendion in the ASO application it is throwing the Error meaasage " Dimension Biuld failed , ther may be problem in allocating memory".
    While i am trying to and Start/Stop my respective Application it is throwing the below error meaasge
    I tried to debug this issue by checking the Locked objects, and asked my Admin to close my sessions forcebully if any running and also checking all rules files . But i didn't get any clue/solution from them.
    Please help me out from this issue
    ***ess-dev.ASOAPP     Stop application     April 15, 2009 4:15:08 PM IST     Failed***
    ***Error: 1013018 Cannot unload database [Sample] while user [ASDF] is performing database operation. Wait for user [ASDF] to complete the operation, or ask the user to abort it. Log out all users and then unload the database.***
    ***     MaxL Command     April 15, 2009 4:40:52 PM IST***
    ***Error: 1053012: Object [Sample] is locked by user [ASDF]***
    ***Error: 1013100: User [ASDF] is Active on Database [Sample]***
    ***Error: 1013132: Cannot build dimensions. There are other active users on database [Sample]***
    ***Error: 1241101: Unexpected Essbase error 1013132***
    ***Error: 1053013: Object [Sample] unlocked by user [ASDF]***
    ***     MaxL Command     April 15, 2009 4:43:28 PM IST***
    ***Error: 1270040: Data load buffer [2] does not exist***
    Regards

    Hi,
    Thanks for your answer friend. My admin has successfully killed my session forcebully. And he doubted that i may not have enough rights to Stop/Start application and he provided me the required rights. After that also the error is repeating as below. we two are not getting where we went wrong.
    ss-dev.ASOAPP     Stop application     April 15, 2009 8:19:35 PM IST     Failed
    Error: 1013018 Cannot unload database [Sample] while user [ASDF] is performing database operation. Wait for user [ASDF] to complete the operation, or ask the user to abort it. Log out all users and then unload the database.
    Help me out from this issue

  • HT1369 Ipod touch not being recognized by itunes (but is registering as an external drive by the computer itself) have updated and reinstalled itunes, stopped/started apple mobile device and removed and mobile programs associated with my non apple cellpho

    Ipod touch not being recognized by itunes (but is registering as an external drive by the computer itself) have updated and reinstalled itunes, stopped/started apple mobile device and removed any mobile programs associated with my non apple cellphone. This seems to have started happening after the last Itunes update I did as I was able to put music on my ipod touch a month or so ago. Is there some way to go back to an older version of itunes? I really have no idea what else to do since I followed every step on the trouble shooting page for windows 8.

    I had this problem too and my roommate solved it!
    Go to 'Settings'
    'Music'
    Scroll to the bottom and enter your password to log onto your home sharing
    Then connect to iTunes and sync!

  • I am going "Insane" - On windows 7 64 bit Itunes just stopped starting, it tries but gives up after a few mins - I have tried every reinstall-restart-that I can find in any forum, it still will not start up  HELP

    I am going "Insane" - On windows 7 64 bit Itunes just stopped starting, it tries but gives up after a few mins - I have tried every reinstall-restart-that I can find in any forum, it still will not start up  HELP

    Hi, ATPMolloy.
    I certainly understand your frustration and will do my best to help.  I see you have uninstalled and reinstalled iTunes with no change in results.  I have attached an article below that specifically troubleshoots this issue that you are experiencing.  
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/ts1717
    Regards,
    Jason H.

  • How can I get a stop/start button the multimedia flash player in Acrobat 9 pro

    I have successfully embedded a flash movie in my pdf. It starts when I click on it but does not stop until I reloaded the pdf. Is there a way to add stop start buttons?

    There is not currently a shortcut for this. That's a good feature request, though. You can submit feature requests here.

Maybe you are looking for

  • Report in SAP that shows me the fixed assets per vendor

    Hi, I have been asked to produce the following; Can I run a report in SAP that shows me the fixed assets per vendor? I need the detail of the depreciations (start and end date, purchase price, depreciation rate, methodu2026) and the fixed assets regi

  • Most of the triggers in my composition are not showing there active state

    I have a composition with 18 triggers. Each trigger has a b/w image that should turn to a colour image when active or rolled over but only the two on the 3rd row work correctly. The others do change when rolled over but when I roll off, even when sti

  • Internal Conversion error excel-SAP

    A request was made from our users if it was possible to make standard excel lay outs This moment when running a report, the filters and subtotals dissapear after downloading to excel. Apperantly it is possible to make a standard lay out in excel. For

  • CCX7.0 Database Integration with Oracle 10g through ODBC

    Good Day- We are up to integrate CCX7.0 with Oracle 10g, CCX7.0 documents show the way to integrate the CCX7.0 with SQL server, but mention nothing about Oracle 10g, anyway... I tried to check the ODBC options, there were many options, I tried to sel

  • Root Application Module

    i understand that we can't extend and substitute the root application module for a page. However, I am not sure how to tell if the AM I am working with is a root AM, actually I am not sure what a root AM is either. I tried extending PsrAM which is un