Oracle 11g XE won't auto start

Installed XE (11g) on a XP machine. When system is restarted listener service starts but DB service doesn't. It is set to auto start. If I manually start the DB service it starts without issue and we can use the system.
I've even set the service to try to restart in case of a failure (to see if that made a difference.....nope).
Any ideas?

Hi,
What's set to registry?
HKEY_LOCAL_MACHINE -> SOFTWARE -> ORACLE -> [HOME0] -> ORA_[SID]_AUTOSTART
Regards,

Similar Messages

  • Oracle 11g application won't start sometimes(jar files issue)

    Hello,
    The issue we experience is that now and then, our forms 11g application
    won't start.
    So it can be the case that, for example, the application can be started
    succesfully 5 times in a row, but the 6th and 7th time, it won't start
    anymore. But when we relaunch it for the 8th time, it launches perfectly.
    When the application isn't starting, a new window is opened having a yellow triangle
    with an exclamation mark on the top right corner.
    After a long period, we suddely discovered that it had something to do with ".jar" files.
    Because when we clear the "java jar cache" on the client machine
    (start -> control panel -> java -> "general" tab -> "view..." button -> select all the files and click on the
    cross(remove selected sources) ), the application succesfully starts for about 10 times in a row.
    But the first time we start the application(after clearing the cache), it takes much longer, because the application
    is downloading the .jar files again. (java logo appears with a progress bar)
    But clearing the cache every time before starting the application can't be a decent solution we think.
    When we enable all java debugging info in the console, we received the error below 2 times when launching a application session that refused to start:
    java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.sun.awt)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPackageAccess(Unknown Source)
         at sun.plugin2.applet.Applet2SecurityManager.checkPackageAccess(Unknown Source)
         at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at oracle.forms.engine.Main.initDesktop(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Anyone having a clue ?
    thanks in advance !

    Sorry, I meant WEB-INF\lib in the WAR file inside my EAR.
    I put all the jar files in the WEB-INF\lib of the WAR file but it still does not work. I have to specify them in the classpaths and put the jar files in the domains\domain\lib directory
    I thought if you put it in the WEB-INF\lib then you don't have to put them in the classpath.
    Am I right?

  • Oracle 11g database instance will not start

    I have an oracle 11g instance running on 64bit windows server 2008. The instance will not start:
    SQL> startup
    ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    ORACLE instance started.
    Total System Global Area 4526317568 bytes
    Fixed Size 2262648 bytes
    Variable Size 2566916488 bytes
    Database Buffers 1946157056 bytes
    Redo Buffers 10981376 bytes
    Database mounted.
    ORA-03113: end-of-file on communication channel
    Process ID: 6496
    Session ID: 107 Serial number: 3
    After that, the oracle service for the instance stops.
    It will startup with nomount and I can mount it with no issue, but as soon as I try: alter database open; it fails.
    I ran a validate in rman, and no error were found.
    How do I troubleshoot this?

    Ok, thanks to all for pointers on finding the alert log. Found it. here's the relevant section, I believe:
    ARCH: Error 19809 Creating archive log file to 'D:\ORADATA\FASTRECOVERY\....\ARCHIVELOG\2012_11_07\O1_MF_1_2456_%U_.ARC'
    Errors in file C:\APP\diag\rdbms\....\trace\ukgb01_ora_3308.trc:
    ORA-16038: log 2 sequence# 2456 cannot be archived
    ORA-19809: limit exceeded for recovery files
    ORA-00312: online log 2 thread 1: 'F:\ORADATA\REDO\....\REDO02.LOG'
    USER (ospid: 3308): terminating the instance due to error 16038
    ARC0: STARTING ARCH PROCESSES
    System state dump requested by (instance=1, osid=3308), summary=[abnormal instance termination].
    System State dumped to trace file C:\APP\diag\rdbms\.....\trace\xxxxx_diag_504.trc
    Dumping diagnostic data in directory=[cdmp_20121107205514], requested by (instance=1, osid=3308), summary=[abnormal instance termination].
    Instance terminated by USER, pid = 3308
    Wed Nov 07 21:13:40 2012
    Adjusting the default value of parameter parallel_max_servers
    from 640 to 185 due to the value of parameter processes (200)
    Starting ORACLE instance (normal)
    I'm new to all this. What do I do in rman to clear this up?

  • Oracle 11g XE listener does not start automatically during boot

    Hi,
    This happened to me recently I just wanted to share it with you.
    For development I was running Standard Edition, at some point I decided to run also XE on the same server for another reasons. Everything was working fine, except that after restart of the server, the XE listener is not starting automatically. Debugging the startup script I found that this happens because of a bug in the code, which assumes that XE listener is running if it finds the word LISTENER within the processes list. I didn't found any obligation in the docs for running XE without any other databases on the same host.
    In file /etc/init.d/oracle-xe, at line 556 the code is failing:
    1     + status='oracle 2889 1 0 May13 ? 00:00:05 /oracle/ora112se/bin/tnslsnr LISTENER -inherit'
    2     + '[' 'oracle 2889 1 0 May13 ? 00:00:05 /oracle/ora112se/bin/tnslsnr LISTENER -inherit' == '' ']'
    As you can see I have another listener(the one for SE) running and because of the XE startup script found the keyword LISTENER it’s supposing that the XE LISTENER is already running.
    To fix this simply change line 556 from:
    1     status=`ps -ef | grep tns | grep oracle`
    To:
    1     status=`ps -ef | grep tns | grep oracle | grep xe`
    Now XE listener is started automatically during boot.
    Sve
    Blog: http://sve.to
    Twitter: sgyurov

    I though the same thing, but XE LISTENER is running on localhost and port 1522. On the other hand XE have local_listener explicitly set to the very same connection descriptor. Even XE installation was second on this server.
    I've could change that yes, but the startup script doesn't seemed to have this mind.
    Regards,
    Sve

  • MiniDLNA won't auto start

    MiniDLNA starts with no issues, but on boot it fails to start.
    I've read the following link:
    https://wiki.archlinux.org/index.php/Mi … _autostart
    But the NetworkManager Wait Online service doesn't seem to fix it.  Any alternatives or solutions?
    The service starts no problem after the system reboots and I manually type:
    systemctl start minidlna
    I even tried making a cron job using crontab that executes a script that runs systemctl start minidlna every 1min, but that doesn't seem to be working properly.
    Last edited by wmcmahon (2013-08-15 18:56:20)

    I have the same problem. Anyone with some help?
    I have tried a few things including an issue resolved in  https://bbs.archlinux.org/viewtopic.php?id=150784
    but now the pid file is not created on boot or when starting the service with systemctl and minidlna won't start
    -but runs fine when I manually run minidlnad (not started with systemctl)
    Last edited by cellar (2013-09-02 16:35:32)

  • Getting started with Oracle 11g express edition

    I am currently in a college class doin SQL. I have downloaded oracle 11g express edition. I'm trying to get started and when I try to create a new connection it takes me to a screen where I have to sign in. When I use my oracle sign in and pass word it tells me it doesn't recognize it. No I know it works because I can sign in on the web site. But it won't connect me or allow me to make a new connection. I really don't understand what is going on. I can seriously use some help. Something that will take me step by step on what I need to do. I have to create a data base and I'm not sure how to do it.
    Thank You
    Carl Gavin

    Hello Carl,
    Something that will take me step by step on what I need to do.Sounds like what you are searching for is the [url http://docs.oracle.com/cd/E17781_01/admin.112/e18585/toc.htm]Getting Started Guide.
    If you need some advanced knowlege, there would be the "2 Day DBA Guide", which, among other topics, contains a section on [url http://docs.oracle.com/cd/E17781_01/server.112/e18804/connecting.htm#CEGIFAHF]Connecting to the Database. I think you'll find all necessary information (background and step by step description) you need.
    -Udo

  • Start Oracle 11g Db automatically in windows

    OS: windows
    DB : Oracle 11.2.0.1.0
    I created Oracle 11g Database manually . but while restarting the system ,database not starting
    automatically. On begining of the script I created ORADIM with Manual option .
    oradim -NEW -SID mydb -STARTMODE MANUAL -PFILE pfI try the follwing command. but it is not working
    oradim -STARTUP -SID mydb -STARTTYPE  srvc,inst
    ORADIM -EDIT -SID mydb -STARTMODE auto I try the following command but it give the error message 'Unable to start service,OS error
    1056'
    ORADIM -EDIT -SID mydb -STARTMODE AUTO -SRVCSTART SYSTEM -SPFILEWhich command I need to use in my script start my db automatically.

    OraFighter wrote:
    ORA_finu_AUTOSTART TRUE
    actually which command I need to use to edit ORADIM for autostartif you add "-STARTMODE AUTO " with PFILE and then set "ORA_finu_AUTOSTART TRUE" then it should be fine.

  • Unable to auto start database/listener/EM on Oracle Enterprise Linux 5

    All Experts
    I have install oracle 11g on Oracle Enterprize Linux 5 successfully.
    done all post installating steps, but when i restart server oracle listener/database/EM not automatically start.
    Please guide what is wron (server dbora error: /bin/sh: :No such file or directory).
    1. Log in as the root user
    2. Edit the oratab file (SID=Y)
    3. Create a file called dbora
    4.Run chmod and chgrp on the dbor file
    # chgrp dba dbora
    # chmod 750 dbora
    6.Creat symbolic links to the dbora script
    # ln -s /etc/init.d/dbora /etc/rc.d/rc0.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/S99dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/S99dbora
    7. add service
    # chkconfig --add dbora
    # chkconfig –list dbora
    0:off 1:off 2:off 3:on 4:off 5:on 6:off
    # ls -l /etc/rc*.d/*dbora
    # !/bin/sh -X
    # chkconfig: 35 99 10
    # description: Start and stop the Oracle database, listener, EM, and iSQLPlus
    # Change the value of ORACLE_HOMe to specify the correct Oracle Home Firectory for your installation.
    # Change the value of ORACLE to the login name of the oracle owner at your site
    ORACLE_HOME=/oradisk/app/oracle/product/11.1.0/db
    ORACLE=oracle
    PATH=${PATH}:$ORACLE_HOME/bin
    HOST="hostname"
    PLATFORM="uname"
    export ORACLE_HOME PATH
    if [ ! -f $ORACLE_HOME/bin/dbstart ]
    then
    echo "Oracle startup: cannot start"
    exit
    fi
    case $1 in
    'start')
    su - $ORACLE -c "$ORACLE_HOME/bin/dbstart $ORACLE_HOME"
    'stop')
    su - $ORACLE -c "$ORACLE_HOME/bin/dbshut $ORACLE_HOME"
    echo "usage: $0 {start|stop}"
    exit
    esac
    exit

    does the script work when you log on to your freshly started system, logon as root and execute /etc/init.d/dbora start?
    the script does not have to have group membership of the dba group.
    also, do not create symlinks yourself.
    by adding the service using chkconfig the script is started and stopped as indicated by chkconfig --list, no need to do additional steps like creating symlinks.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Installation of Oracle 11g on RHEL 5 (Listener cannot start )

    Hello,
    I have install Oracle 11g on my linux RHEL5. The installation was succesfull but cannot start the listener. The configuration of even the EM at the end of the installation for the same reason , Listener not started.
    Trying to connect to my Listener i got the following error
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=karen)(PORT=1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCPS)(HOST=karen)(PORT=2484)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    LSNRCTL> start
    Starting /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr: please wait...
    TNS-12537: TNS:connection closed
    TNS-12560: TNS:protocol adapter error
    TNS-00507: Connection closed
    Linux Error: 29: Illegal seek
    Can Some help troubleshoot this problem.
    Thanks

    Dear bezgodo!
    Please execute the following commands and compare the results.
    1.
    hostname --fqdn2.
    nslookup <your_ip_address>In both cases you should see the fully qualified hostname of your server.
    Yours sincerely
    Florian W.

  • Error in Setting Auto Start for Oracle DB on Sun Solaris 10

    Hi Gurus,
    I am trying to set my DB to auto start when server reboots. Fllowing is my setting and the error. The issue is that the DB starts but LISTENER is not running...
    Please please help me...
    This is what I used for setting the auto start.
    Thanks,
    Jayant
    SETTING:
    =======
    #!/sbin/sh
    #Match ORACLE_HOME with whatever is in ~oracle/.profile!!!
    ORACLE_HOME=<whatever is Orcale home is>
    case $1 in
    start)
    su - oracle -c $ORACLE_HOME/bin/dbstart
    su - oracle -c "$ORACLE_HOME/bin/lsnrctl start"
    exit 0
    stop)
    su - oracle -c "$ORACLE_HOME/bin/lsnrctl stop"
    su - oracle -c $ORACLE_HOME/bin/dbshut
    esac
    You're not done yet! You now have to dl
    ln -s ../init.d/oracle /etc/rc3.d/S95oracle
    ln -s ../init.d/oracle /etc/rc0.d/K15oracle
    chmod 0755 /etc/init.d/oracle
    ERROR:
    ======
    LSNRCTL for Solaris: Version 10.2.0.1.0 - Production on 02-DEC-2006 10:09:24
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Message 1070 not found; No message file for product=network, facility=TNSTNS-12545: Message 12545 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-00515: Message 515 not found; No message file for product=network, facility=TNS
    Solaris Error: 2: No such file or directory
    root@zngds1gk #

    Bingo.... I got it.
    Thanks for your hint about the ./.profile. I was setting env variables in .cshrc file and my default shell for "oracle" user was sh.
    Then I changed the default shell for oracle user to csh and viola..... it works.
    root@zngds1gk # su - oracle
    $ id
    uid=100(oracle) gid=101(dba)
    $ setenv
    HOME=/space/oracle
    PATH=/space/oracle/app/oracle/product/10.2.0/Db_2/bin:/usr/bin:
    LOGNAME=oracle
    HZ=100
    TERM=xterm
    SHELL=/bin/sh
    $ exit
    root@zngds1gk # usermod -u 100 -s /bin/csh oracle
    root@zngds1gk # su - oracle
    zngds1gk%
    zngds1gk% setenv
    HOME=/space/oracle
    PATH=/space/oracle/app/oracle/product/10.2.0/Db_2/bin:/usr/bin:
    LOGNAME=oracle
    HZ=100
    TERM=xterm
    SHELL=/bin/csh
    zngds1gk% cat .cshrc
    umask 022
    setenv ORACLE_BASE /space/oracle/app/oracle
    setenv ORACLE_SID adm
    setenv DISPLAY 47.102.212.108:0.0
    setenv ORACLE_HOME /space/oracle/app/oracle/product/10.2.0/Db_2
    setenv PATH /space/oracle/app/oracle/product/10.2.0/Db_2/bin:$PATH
    And now it works...
    Thanks.
    ~Jayant

  • Not able to start Em Console for Oracle 11g in Linux 6.1

    I have a RedHat Linux 6.1 Laptop. I successfully installed Oracle 11g in my laptop and configured the DB.
    Post Installation everything was working fine and I could open the EM console.
    After stopping the DB, I am not able to bring up the em console. Notice the below error
    2014-01-27 19:32:52,014 Thread-4115646208 WARN  reload: Error parsing lastupld.xml : ORAXML-229, File=file:/home/oracle/app/oracle/product/11.2.0/dbhome_1/localhost_OMSora11g/sysman/emd/lastupld.xml, Line=0, Msg=LPX-00229: input source is empty
    2014-01-27 19:32:52,089 Thread-4115646208 WARN  http: nmehl_connect_internal: connect failed to (localhost:1158): Connection refused (error = 111)
    2014-01-27 19:32:52,089 Thread-4115646208 ERROR pingManager: nmepm_pingReposURL: Cannot connect to http://localhost:1158/em/upload/: retStatus=-1
    2014-01-27 19:32:52,170 Thread-4115646208 WARN  command: Job Subsystem Timeout set at 600 seconds
    2014-01-27 19:32:52,197 Thread-4115646208 WARN  upload: Upload manager has no Failure script: disabled
    2014-01-27 19:32:52,367 Thread-4115646208 WARN  metadata: Metric VirtualHosts does not have any data columns
    2014-01-27 19:32:52,624 Thread-4115646208 WARN  metadata: Metric hung_system_traces does not have any data columns
    2014-01-27 19:32:52,937 Thread-4115646208 ERROR main: failed to initialize TargetManager
    ======================================
    One of the links suggested it could  be because of sys and sysman users being locked. I ran the "alter user  sysman  account unlock;" command and unlocked it.
    BEFORE Unlock
    ./emctl start dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation.  All rights reserved.
    http://localhost:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ............................................................................................. failed.
    Logs are generated in directory /home/oracle/app/oracle/product/11.2.0/dbhome_1/localhost_OMSora11g/sysman/log
    AFTER UNLOCK
    ./emctl start dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation.  All rights reserved.
    http://localhost:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ..... started.
    Logs are generated in directory /home/oracle/app/oracle/product/11.2.0/dbhome_1/localhost_OMSora11g/sysman/log
    But the same error is noticed in both the above cases. Please assist..
    AFTER Unlock

    Hi,
    As you have mentioned that the sysman account was locked I would recommend to change the sysman password as per below doc to ensure the password is consistent at both config file and DB level
    How To Change the Password of the Database User Sysman (DB Control Repository Schema) (Doc ID 259379.1)
    Then try accessing the DBcontrol using below URL
    http://localhost:1158/em/console
    Regards,
    Rahul

  • Problem with getting started with the SQL Developer in oracle 11g

    I downloaded the oracle 11g from the oracle site and installed it on my machine.Now i want to write the sql queries and practise them......so i tried this:start\oracle11gHome\ApplicationDevelopment\Sqldeveloper . But I get a messagebox with a browse button asking me to "Enter the full pathname for java.exe"
    what is this all about?Do i need to install jave in my host machine?
    how to solve this problem?

    hi
    If you are asked to enter the full pathname for java.exe, click Browse and find java.exe. For example, the path might have a name similar to C:\Program Files\Java\jdk1.5.0_06\bin\java.exe.
    http://download.oracle.com/docs/cd/E10405_01/doc/install.120/e10407/install.htm
    hope this helps
    zekeriya

  • Auto start Oracle instance in linux

    Can I configure oracle to auto start an oracle instance in linux environment ?

    Here are the steps to enable the oracle service start automatically during the system boot
    Login as root in Linux box to execute the following steps
    1. the flag set to Y in /etc/oratab file with the respective instance
    2. Copy the oracle script in /etc/init.d folder
    3. change the permission < chmod 755 <script filename>
    4. add the service <chkconfig --add <script filename>
    5 Put the service auto on <chkconfig <script filename> on >
    6. To verify the oracle service startup automatic < service <script filename> stop > < service <script filename> start >
    Regards
    N Jandial

  • Dbconsole start failed Oracle 11G

    After installing Oracle 11G and creating a new database, I have created new db console reporsitory, with the commands:
    set ORACLE_SID
    set ORACLE_HOME
    set SYS_PWD
    set PORT
    emca -repos create -silent -SID $ORACLE_SID -ORACLE_HOME $ORACLE_HOME -SYS_PWD $SYS_PWD -DBSNMP_PWD $SYS_PWD -SYSMAN_PWD $SYS_PWD -PORT $PORT
    emca -config dbcontrol db -silent -SID $ORACLE_SID -ORACLE_HOME $ORACLE_HOME -SYS_PWD $SYS_PWD -DBSNMP_PWD $SYS_PWD -SYSMAN_PWD $SYS_PWD -PORT $PORT
    At the end, the command fails:
    INFO: This operation is being logged at /exec/products/oracle/cfgtoollogs/emca/HYDRA/emca_2008_09_22_22_25_54.log.
    Sep 22, 2008 10:26:41 PM oracle.sysman.emcp.util.DBControlUtil stopOMS
    INFO: Stopping Database Control (this may take a while) ...
    Sep 22, 2008 10:26:44 PM oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
    INFO: Uploading configuration data to EM repository (this may take a while) ...
    Sep 22, 2008 10:27:13 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Uploaded configuration data successfully
    Sep 22, 2008 10:27:16 PM oracle.sysman.emcp.util.DBControlUtil configureSoftwareLib
    INFO: Software library configured successfully.
    Sep 22, 2008 10:27:16 PM oracle.sysman.emcp.EMDBPostConfig configureSoftwareLibrary
    INFO: Deploying Provisioning archives ...
    Sep 22, 2008 10:27:21 PM oracle.sysman.emcp.EMDBPostConfig configureSoftwareLibrary
    INFO: Provisioning archives deployed successfully.
    Sep 22, 2008 10:27:21 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    INFO: Securing Database Control (this may take a while) ...
    Sep 22, 2008 10:27:32 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    INFO: Database Control secured successfully.
    Sep 22, 2008 10:27:32 PM oracle.sysman.emcp.util.DBControlUtil startOMS
    INFO: Starting Database Control (this may take a while) ...
    Sep 22, 2008 10:30:40 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /exec/products/oracle/v11.1.0/bin/emctl start dbconsole
    Sep 22, 2008 10:30:40 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at /exec/products/oracle/cfgtoollogs/emca/HYDRA/emca_2008_09_22_22_25_54.log for more details.
    Could not complete the configuration. Refer to the log file at /exec/products/oracle/cfgtoollogs/emca/HYDRA/emca_2008_09_22_22_25_54.log for more details.
    When I want to start dbconsole manually, I have the following error:
    emctl start dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.1.0.6.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://RD_x3650_22:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ............................................................................................. failed.
    Logs are generated in directory /exec/products/oracle/v11.1.0/RD_x3650_22_HYDRA/sysman/log
    The logs give the following message:
    emdctl.trc:
    2008-09-23 00:19:32 Thread-3083821984 ERROR http: 5: Unable to initialize ssl connection with server, aborting connection attempt
    2008-09-23 00:19:32 Thread-3083813792 ERROR ssl: Open wallet failed, ret = 28750
    2008-09-23 00:19:32 Thread-3083813792 ERROR ssl: nmehlenv_openWallet failed
    2008-09-23 00:19:32 Thread-3083813792 ERROR ssl: Error initializing SSL
    2008-09-23 00:19:32 Thread-3083813792 ERROR http: 5: Unable to initialize ssl connection with server, aborting connection attempt
    2008-09-23 00:19:32 Thread-3083813792 ERROR main: nmectla_agentctl: Error connecting to https://RD_x3650_22:3872/emd/main. Returning status code 1
    emoms.trc:
    2008-09-22 23:07:08,275 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.479 - Integration Class not found: oracle.sysman.pp.ec.ui.intg.ExtendClusterIntegration
    2008-09-22 23:07:08,276 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.479 - Integration Class not found: oracle.sysman.pp.dn.ui.intg.DltNodeIntegration
    2008-09-22 23:07:08,277 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.479 - Integration Class not found: oracle.sysman.pp.common.ui.intg.ProvCommonIntegration
    emagent.log:
    2008-09-22 23:06:59 Thread-3083801408 EMAgent started successfully (00702)
    2008-09-22 23:14:56 Thread-3083817792 Starting Agent 10.2.0.3.0 from /exec/products/oracle/v11.1.0 (00701)
    2008-09-22 23:14:57 Thread-3083817792 [Database Instance] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2008-09-22 23:14:57 Thread-3083817792 [Cluster Database] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2008-09-22 23:14:57 Thread-3083817792 [Load Balancer Switch] InstanceProperty (snmpTimeout) is marked OPTIONAL but is being used (00506)
    2008-09-22 23:14:58 Thread-3083817792 EMAgent started successfully (00702)
    2008-09-23 00:14:00 Thread-3083813696 Starting Agent 10.2.0.3.0 from /exec/products/oracle/v11.1.0 (00701)
    2008-09-23 00:14:01 Thread-3083813696 [Database Instance] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2008-09-23 00:14:01 Thread-3083813696 [Cluster Database] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2008-09-23 00:14:01 Thread-3083813696 [Load Balancer Switch] InstanceProperty (snmpTimeout) is marked OPTIONAL but is being used (00506)
    2008-09-23 00:14:03 Thread-3083813696 EMAgent started successfully (00702)
    I've tried this:
    - set correctly TIMEZONE,
    - configure secure dbconsole (emctl secure dbconsole),
    - stop service nscd,
    - change the port number,
    - recreate the repository....
    But the problem still occurs...
    Has someone another idea?
    Thank You
    Anne

    I found the problem.  Since I added NIST FIPS 140-2 in the database by add a file
    $ORACLE_HOME/ldap/admin/fips.ora
    SSLFIPS_140=TRUE
    This cause the Agent not start.  Do you have any suggesting?
    Thank You

  • Dbconsole start  failed on Oracle 11G

    After installing Oracle 11G and creating a new database, I have created new db console reporsitory, with the commands:
    set ORACLE_SID
    set ORACLE_HOME
    set SYS_PWD
    set PORT
    emca -repos create -silent -SID $ORACLE_SID -ORACLE_HOME $ORACLE_HOME -SYS_PWD $SYS_PWD -DBSNMP_PWD $SYS_PWD -SYSMAN_PWD $SYS_PWD -PORT $PORT
    emca -config dbcontrol db -silent -SID $ORACLE_SID -ORACLE_HOME $ORACLE_HOME -SYS_PWD $SYS_PWD -DBSNMP_PWD $SYS_PWD -SYSMAN_PWD $SYS_PWD -PORT $PORT
    At the end, the command fails:
    INFO: This operation is being logged at /exec/products/oracle/cfgtoollogs/emca/HYDRA/emca_2008_09_22_22_25_54.log.
    Sep 22, 2008 10:26:41 PM oracle.sysman.emcp.util.DBControlUtil stopOMS
    INFO: Stopping Database Control (this may take a while) ...
    Sep 22, 2008 10:26:44 PM oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
    INFO: Uploading configuration data to EM repository (this may take a while) ...
    Sep 22, 2008 10:27:13 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Uploaded configuration data successfully
    Sep 22, 2008 10:27:16 PM oracle.sysman.emcp.util.DBControlUtil configureSoftwareLib
    INFO: Software library configured successfully.
    Sep 22, 2008 10:27:16 PM oracle.sysman.emcp.EMDBPostConfig configureSoftwareLibrary
    INFO: Deploying Provisioning archives ...
    Sep 22, 2008 10:27:21 PM oracle.sysman.emcp.EMDBPostConfig configureSoftwareLibrary
    INFO: Provisioning archives deployed successfully.
    Sep 22, 2008 10:27:21 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    INFO: Securing Database Control (this may take a while) ...
    Sep 22, 2008 10:27:32 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    INFO: Database Control secured successfully.
    Sep 22, 2008 10:27:32 PM oracle.sysman.emcp.util.DBControlUtil startOMS
    INFO: Starting Database Control (this may take a while) ...
    Sep 22, 2008 10:30:40 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /exec/products/oracle/v11.1.0/bin/emctl start dbconsole
    Sep 22, 2008 10:30:40 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at /exec/products/oracle/cfgtoollogs/emca/HYDRA/emca_2008_09_22_22_25_54.log for more details.
    Could not complete the configuration. Refer to the log file at /exec/products/oracle/cfgtoollogs/emca/HYDRA/emca_2008_09_22_22_25_54.log for more details.
    When I want to start dbconsole manually, I have the following error:
    emctl start dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.1.0.6.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://RD_x3650_22:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ............................................................................................. failed.
    Logs are generated in directory /exec/products/oracle/v11.1.0/RD_x3650_22_HYDRA/sysman/log
    The logs give the following message:
    emdctl.trc:
    2008-09-23 00:19:32 Thread-3083821984 ERROR http: 5: Unable to initialize ssl connection with server, aborting connection attempt
    2008-09-23 00:19:32 Thread-3083813792 ERROR ssl: Open wallet failed, ret = 28750
    2008-09-23 00:19:32 Thread-3083813792 ERROR ssl: nmehlenv_openWallet failed
    2008-09-23 00:19:32 Thread-3083813792 ERROR ssl: Error initializing SSL
    2008-09-23 00:19:32 Thread-3083813792 ERROR http: 5: Unable to initialize ssl connection with server, aborting connection attempt
    2008-09-23 00:19:32 Thread-3083813792 ERROR main: nmectla_agentctl: Error connecting to https://RD_x3650_22:3872/emd/main. Returning status code 1
    emoms.trc:
    2008-09-22 23:07:08,275 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.479 - Integration Class not found: oracle.sysman.pp.ec.ui.intg.ExtendClusterIntegration
    2008-09-22 23:07:08,276 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.479 - Integration Class not found: oracle.sysman.pp.dn.ui.intg.DltNodeIntegration
    2008-09-22 23:07:08,277 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.479 - Integration Class not found: oracle.sysman.pp.common.ui.intg.ProvCommonIntegration
    emagent.log:
    2008-09-22 23:06:59 Thread-3083801408 EMAgent started successfully (00702)
    2008-09-22 23:14:56 Thread-3083817792 Starting Agent 10.2.0.3.0 from /exec/products/oracle/v11.1.0 (00701)
    2008-09-22 23:14:57 Thread-3083817792 [Database Instance] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2008-09-22 23:14:57 Thread-3083817792 [Cluster Database] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2008-09-22 23:14:57 Thread-3083817792 [Load Balancer Switch] InstanceProperty (snmpTimeout) is marked OPTIONAL but is being used (00506)
    2008-09-22 23:14:58 Thread-3083817792 EMAgent started successfully (00702)
    2008-09-23 00:14:00 Thread-3083813696 Starting Agent 10.2.0.3.0 from /exec/products/oracle/v11.1.0 (00701)
    2008-09-23 00:14:01 Thread-3083813696 [Database Instance] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2008-09-23 00:14:01 Thread-3083813696 [Cluster Database] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2008-09-23 00:14:01 Thread-3083813696 [Load Balancer Switch] InstanceProperty (snmpTimeout) is marked OPTIONAL but is being used (00506)
    2008-09-23 00:14:03 Thread-3083813696 EMAgent started successfully (00702)
    I've tried this:
    - set correctly TIMEZONE,
    - configure secure dbconsole (emctl secure dbconsole),
    - stop service nscd,
    - change the port number,
    - recreate the repository....
    But the problem still occurs...
    Has someone another idea?
    Thank You
    Anne

    emctl secure agent does not exist with Oracle 11G
    I tried:
    emctl secure dbconsoleOracle Enterprise Manager 11g Database Control Release 11.1.0.6.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    [https://RD_x3650_22:5500/em/console/aboutApplication|https://rd_x3650_22:5500/em/console/aboutApplication]
    Please enter repository password:
    DBCONSOLE already stopped... Done.
    Agent is already stopped... Done.
    Securing dbconsole... Started.
    Securing dbconsole... Sucessful.
    But the dbconsole starting still have errors
    The command status gives:
    emctl status agent -secureOracle Enterprise Manager 11g Database Control Release 11.1.0.6.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Checking the security status of the Agent at location set in /exec/products/oracle/v11.1.0/RD_x3650_22_HYDRA/sysman/config/emd.properties... Done.
    Agent is secure at HTTPS Port 3938.
    Checking the security status of the OMS at [http://RD_x3650_22:5500/em/upload/..|http://rd_x3650_22:5500/em/]. Done.
    OMS is running but has not been secured. No HTTPS Port available.
    And the command "emctl ssl off" does nots exist with Oracle 11G
    Anne

Maybe you are looking for

  • My simple bean will not work! Help!

    I created a java bean based on a tutorial. After a little bit of trouble with the classpath, getting files in the right place, etc, I finally got it working. Whoo hoo! Now, I'm working on a second java bean and I cannot get it to work. I'm at the poi

  • Time Machine and a network drive combined

    I figured out how to connect Time Machine with a network drive (like LaCie Mini). It works great, the only thing is, everytime I restart the mac I need to re-connect manually to the server in order TM can run. I wondered why OS X gives not the option

  • Language Monitors and Bi-directional Printing: What functionality is lost when disabling? What else uses them?

    Server OS: Windows 2008 R2 Standard Function: Primary Domain Controller and Print Server Clients: All are running Windows 7 Pro 64-Bit SP1 We're considering disabling the HP Universal Print Driver Language Monitor and in-turn Bi-directional Printing

  • Standard report -- PDF (More options) ?

    I have a report writing VI which creates a standard report, and generates a PDF via adobe distiller. I played with some options in adobe so that it will not ask for a file name. I write my report to a file on a specific directory and rename it. Every

  • Alert Message

    Hello Experts! i am interested in creating a query-alert which will work as a validation. i would like this query to alert me when a user makes a Purchase Order and tyhe price of the unit is changed by the user and is not the price generated by the s