Pavan DBA's Blog

The DBA Knowledge Store

EM dbconsole not started and giving NET HELPMSG 3547

Posted by Pavan DBA on May 18, 2010


Hi Friends, today i face some problem with EM dbconsole in one of my databases are here is the way how i resolved it

Database version : 10.2.0.4 standard edition
OS version : windows 2003 server with service pack 2

Problem : Sys admin performed firm upgrade on my database server and rebooted it. From that moment EM dbconsole is not working

1) i checked the status of dbconsole as follows

C:\Documents and Settings\oracms>emctl status dbconsole
Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
Copyright (c) 1996, 2007 Oracle Corporation.  All rights reserved.
https://cmsp-database.klpcph.local:5500/em/console/aboutApplication
Oracle Enterprise Manager 10g is not running.
——————————————————————
Logs are generated in directory N:\oracle\product\10.2.0\db/cmsp-database.klpcph.local_KLPPROD01/sys
man/log

2) then i tried starting dbconsole and got following error

C:\Documents and Settings\oracms>emctl start dbconsole
Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
Copyright (c) 1996, 2007 Oracle Corporation.  All rights reserved.
https://cmsp-database.klpcph.local:5500/em/console/aboutApplication
Starting Oracle Enterprise Manager 10g Database Control …The OracleDBConsoleKLPPROD01 service is s
tarting…………………………………………………………………………………
……………………………………………………………………………………….
……………………
The OracleDBConsoleKLPPROD01 service could not be started.

A service specific error occurred: 1.

More help is available by typing NET HELPMSG 3547.

3) then i tried to find out what this message is

C:\Documents and Settings\oracms>NET HELPMSG 3547

A service specific error occurred: ***.
EXPLANATION

A service-specific error occurred.

ACTION

Refer to the Help or documentation for that service to determine the problem.

as you can see we cannot understand what is the exact problem here…

4) sometimes this problem may occur because SYSMAN and DBSNMP users got locked. so i checked their account status

C:\Documents and Settings\oracms>sqlplus “/ as sysdba”

SQL*Plus: Release 10.2.0.4.0 – Production on Tue May 18 08:26:24 2010

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
Connected to:
Oracle Database 10g Release 10.2.0.4.0 – 64bit Production

SQL> select username,account_status from dba_users;

USERNAME                       ACCOUNT_STATUS
—————————— ——————————–
MGMT_VIEW                      OPEN
SYS                            OPEN
SYSTEM                         OPEN
DBSNMP                         OPEN
SYSMAN                         OPEN

so from above, its clear that both the user accounts are open

5) then i checked if agent is running or not

C:\Documents and Settings\oracms>emctl status agent
Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
Copyright (c) 1996, 2007 Oracle Corporation.  All rights reserved.
—————————————————————
Agent is Not Running

6) because agent is not running, i tried to start it

C:\Documents and Settings\oracms>emctl start agent
Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
Copyright (c) 1996, 2007 Oracle Corporation.  All rights reserved.
The service name is invalid.

More help is available by typing NET HELPMSG 2185.

as mentioned i tried to check what this message is…

C:\Documents and Settings\oracms>NET HELPMSG 2185

The service name is invalid.
EXPLANATION

You tried to start a service that is not configured on this system.

ACTION

Check the spelling of the service name or check the configuration information for the service using
the Services option from Server Manager.

7) restarting the server could be a solution, but we cannot do that if it is a production database. so i recreated repository
Do remember, recreating enterprise manager repository will not have any impact on database functionality

before recreating, take out the info like
Database hostname
Database SID
Listener port number
password for SYS user
password for DBSNMP user
password for SYSMAN user
also, it is important that DBSNMP and SYSMAN user’s account should be opened

use the following command to recreate repository

C:\Documents and Settings\oracms>emca -config dbcontrol db -repos recreate

STARTED EMCA at May 18, 2010 8:28:24 AM
EM Configuration Assistant, Version 10.2.0.1.0 Production
Copyright (c) 2003, 2005, Oracle.  All rights reserved.

Enter the following information:
Database SID: KLPSTAGE01
Database Control is already configured for the database KLPSTAGE01
You have chosen to configure Database Control for managing the database KLPSTAGE01
This will remove the existing configuration and the default settings and perform a fresh configurati
on
Do you wish to continue? [yes(Y)/no(N)]: y
Listener port number: 1521
Password for SYS user:
Password for DBSNMP user:
Password for SYSMAN user:
Email address for notifications (optional):
Outgoing Mail (SMTP) server for notifications (optional):
—————————————————————–

You have specified the following settings

Database ORACLE_HOME ……………. N:\oracle\product\10.2.0\db

Database hostname ……………. klpdbscph601.klpcph.local
Listener port number ……………. 1521
Database SID ……………. KLPSTAGE01
Email address for notifications ……………
Outgoing Mail (SMTP) server for notifications ……………

—————————————————————–
Do you wish to continue? [yes(Y)/no(N)]: y

this successfully created repository and started my dbconsole

8) so i am happy that my problem solved. but when i checked the EM dbconsole status….it gave me another shock

C:\Documents and Settings\oracms>emctl status dbconsole
Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
Copyright (c) 1996, 2007 Oracle Corporation.  All rights reserved.
https://klpdbscph601.klpcph.local:5500/em/console/aboutApplication
EM Daemon is not running.
——————————————————————
Logs are generated in directory N:\oracle\product\10.2.0\db/klpdbscph601.klpcph.local_KLPSTAGE01/sys
man/log

then i started looking at log and found following warning

May 18, 2010 8:33:00 AM oracle.sysman.emcp.ParamsManager getLocalListener
WARNING: Error retrieving listener for klpdbscph601.klpcph.local

so finally, i reloaded listener and you know it started working… 🙂

C:\Documents and Settings\oracms>lsnrctl reload LISTENER_STAGE01

LSNRCTL for 64-bit Windows: Version 10.2.0.4.0 – Production on 18-MAY-2010 08:37:26

Copyright (c) 1991, 2007, Oracle.  All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=klpdbscph601.klpcph.local)(PORT=1523)))
The command completed successfully

C:\Documents and Settings\oracms>emctl status dbconsole
Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
Copyright (c) 1996, 2007 Oracle Corporation.  All rights reserved.
https://klpdbscph601.klpcph.local:5500/em/console/aboutApplication
Oracle Enterprise Manager 10g is running.
——————————————————————
Logs are generated in directory N:\oracle\product\10.2.0\db/klpdbscph601.klpcph.local_KLPSTAGE01/sys
man/log

Note : we are not using grid control, so this is only for 10g EM dbconsole problem. Don’t apply it for grid control and also test it before use

33 Responses to “EM dbconsole not started and giving NET HELPMSG 3547”

  1. Excellent Pavan. I had a nightmare with recent upgrade to 10.2.0.4 (legacy application, so no frowns please) & your post saved me from a hell. I have re-blogged your post. Thanks once again!

    • Pavan DBA said

      Glad to hear that….

      • I’ve a question, while dropping and recreating the repository, I’ve read that the scheduled jobs designed using EM will get discarded. So, what should be a preventive approach in such cases? (Apparently we don’t schedule anything using EM at all in our environment). Just being curious!

      • Pavan DBA said

        if any jobs are scheduled, it will run through dbms scheduler which is part of database and doesn’t have impact on EM. so it should not be a problem when we drop/recreate repository. can you provide the link where you read that? so that i can look into that.

      • Hello Pavan, I am not exactly sure about the link, however I believe it was from one of the document available with Oracle support. I’ve been going through hundreds of documents and lost the track of it. I’m sure I will able to get back to it. Please let me some time

      • Hello Pavan
        I came across another issue after the upgrade. My upgrade was seamless other than the issues with EM. However after the upgrade I realized that the Windows Service for Oracle will not start automatically (even after auto start registry value is set TRUE). My consecutive attempts proved that the service starts once after I stop and start the service many times through services Microsoft console. I cross checked the registry, folder permissions on both target & new server instances to understand what is wrong. I can’t say it is not starting, yet I could say it starts once after stopping the service multiple times and starting. I tried to change the local system account with a member from the ora_dba group, still the result is same. My host is Windows 10. Any ideas?

      • Pavan DBA said

        unfortunately, i don’t have much hands on windows OS. but from the explanation i can assume, it would be a compatibility issue which need to check with oracle support

      • Thanks Pavan, I got a workaround by upgrading to 10.2.0.5
        10.2.0.4 breaks some permissions & much of the Microsoft APIs referred by the runtime were obsolete as early as 2006-7 period itself.
        Anyway, the services are stopping and restarting after the upgrade to 10.2.0.5. Btw, this exercise is only for learning, hence I can avoid the Oracle support part. Thank you once again for the reply

      • Pavan DBA said

        thanks very much for sharing this info which will be a learning for me and others as well.

  2. Manoj Kumar said

    C:\Documents and Settings\Administrator>emctl start dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.5.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    https://amslorasrv:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 10g Database Control …The OracleDBConsoleor
    cl service is starting………………………………………………….
    …………………………………………………..
    The OracleDBConsoleorcl service could not be started.

    A service specific error occurred: 1.

    More help is available by typing NET HELPMSG 3547.

    C:\Documents and Settings\Administrator>

    I am facing the same problem and recreate the dbconsole three time but still em not working
    getting error A service specific error occurred: 1
    while starting the emctl start dbconsole

  3. Ellareddy A said

    Thx sir . Issue has resolved after recreating repository ( emca -config dbcontrol db -repos recreate)

  4. beewee said

    thank you..it works

  5. Vimal said

    Hi Pawan..When I start dbconsole the following happens….

    Microsoft Windows [Version 6.0.6001]
    Copyright (c) 2006 Microsoft Corporation. All rights reserved.

    C:\Users\lap>set oracle_sid=studies

    C:\Users\lap>emctl status agent
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    —————————————————————
    Agent is Not Running

    C:\Users\lap>emctl start agent
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    These Windows services are started:

    Apple Mobile Device
    Application Experience
    Background Intelligent Transfer Service
    Base Filtering Engine
    Bluetooth Service
    Bluetooth Support Service
    Bonjour Service
    CamMonitor
    CNG Key Isolation
    COM+ Event System
    Cryptographic Services
    DCOM Server Process Launcher
    Desktop Window Manager Session Manager
    DHCP Client
    Diagnostic Policy Service
    Diagnostic System Host
    Distributed Link Tracking Client
    DNS Client
    Extensible Authentication Protocol
    Function Discovery Provider Host
    Function Discovery Resource Publication
    Group Policy Client
    Human Interface Device Access
    IKE and AuthIP IPsec Keying Modules
    Intelr PROSet/Wireless Event Log
    Intelr PROSet/Wireless Registry Service
    IP Helper
    IPsec Policy Agent
    KtmRm for Distributed Transaction Coordinator
    Microsoft Antimalware Service
    Microsoft Network Inspection
    Multimedia Class Scheduler
    Network Connections
    Network List Service
    Network Location Awareness
    Network Store Interface Service
    NSUService
    NVIDIA Display Driver Service
    OracleMTSRecoveryService
    OracleOraDb10g_home1ClrAgent
    OracleOraDb10g_home1iSQL*Plus
    OracleOraDb10g_home1TNSListener
    OracleServiceSTUDIES
    Plug and Play
    Portable Device Enumerator Service
    Print Spooler
    Program Compatibility Assistant Service
    ReadyBoost
    Remote Access Connection Manager
    Remote Procedure Call (RPC)
    Secondary Logon
    Secure Socket Tunneling Protocol Service
    Security Accounts Manager
    Security Center
    Server
    Shell Hardware Detection
    Software Licensing
    SQL Server (MSSMLBIZ)
    SQL Server VSS Writer
    SSDP Discovery
    Superfetch
    System Event Notification Service
    Tablet PC Input Service
    Task Scheduler
    TCP/IP NetBIOS Helper
    Telephony
    Terminal Services
    Themes
    UPnP Device Host
    User Profile Service
    VAIO Content Folder Watcher
    VAIO Entertainment Database Service
    VAIO Entertainment UPnP Client Adapter
    VAIO Event Service
    WebClient
    Windows Audio
    Windows Audio Endpoint Builder
    Windows Driver Foundation – User-mode Driver Framework
    Windows Error Reporting Service
    Windows Event Log
    Windows Firewall
    Windows Image Acquisition (WIA)
    Windows Management Instrumentation
    Windows Media Player Network Sharing Service
    Windows Search
    Windows Time
    Windows Update
    WinHTTP Web Proxy Auto-Discovery Service
    WLAN AutoConfig
    Workstation
    XAudioService

    The command completed successfully.

    C:\Users\lap>emctl start dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://Brindhavi-PC:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 10g Database Control …The OracleDBConsolest
    udies service is starting……………………………………………….
    ……………………………………………………………………..
    ……………………………………………………………………..
    ……………………………………………………..
    The OracleDBConsolestudies service could not be started.

    A service specific error occurred: 1.

    More help is available by typing NET HELPMSG 3547.

    C:\Users\lap>sqlplus “/as sysdba”

    SQL*Plus: Release 10.2.0.4.0 – Production on Sat Feb 18 18:36:57 2012

    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.

    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 – 64bit Production
    With the Partitioning, Oracle Label Security, OLAP, Data Mining Scoring Engine
    and Real Application Testing options

    SQL> select username,account_status from dba_users;

    USERNAME ACCOUNT_STATUS
    —————————— ——————————–
    OUTLN OPEN
    MGMT_VIEW OPEN
    LBACSYS OPEN
    SYS OPEN
    SYSTEM OPEN
    MDSYS OPEN
    ORDSYS OPEN
    CTXSYS OPEN
    ANONYMOUS OPEN
    EXFSYS OPEN
    DMSYS OPEN

    USERNAME ACCOUNT_STATUS
    —————————— ——————————–
    DBSNMP OPEN
    WMSYS OPEN
    SYSMAN OPEN
    XDB OPEN
    ORDPLUGINS OPEN
    SI_INFORMTN_SCHEMA OPEN
    OLAPSYS OPEN
    MDDATA OPEN
    DIP OPEN
    ORACLE_OCM OPEN
    TSMSYS OPEN

    USERNAME ACCOUNT_STATUS
    —————————— ——————————–
    ARUN OPEN

    23 rows selected.

    I get ‘The service specific error occured: 1’
    Kindly help me Pavan…

  6. Adwoa said

    Hi Pavan,

    I’ve been thru your steps, however i’m stuck at
    INFO: Dropping the EM repository. May take a while.
    OS is Windows server 2008
    oracle is 11gr2.
    Please help.
    Thanks!

    • Hi, please specify if you are getting any error. you can see the error info in the log file

      • Adwoa said

        Yes i’m getting an error. Here’s the log file. sorry for its length 😦 Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc CONFIG: Setting oracle.installer.oui_loc to C:apporacleproduct11.2.0dbhome_1oui Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.util.ClusterUtil isHASInstalled CONFIG: isHAInstalled: false Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘-migrate’ set to false Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘migrateFromDBControl’ set to false Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘migrateToCentralAgent’ set to false Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘migrateFromCentralAgent’ set to false Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘migrateToDBControl’ set to false Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘-config’ set to true Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘UPDATE_EMAIL’ set to true Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘dbcontrol’ set to true Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘db’ set to true Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘create’ set to true Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: ORACLE_HOME value: C:apporacleproduct11.2.0dbhome_1 Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled CONFIG: isCRSInstalled: false Jun 25, 2011 8:35:05 PM oracle.sysman.emcp.util.ClusterUtil isHASInstalled CONFIG: isHAInstalled: false Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: SID value: hrms Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName CONFIG: No service name available. Will try to set db_unique_name.db_domain Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter REP_DB_RUNNING_HOST. Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DB_UNIQUE_NAME. Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database null : localhost Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter SYSMAN_PWD. Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter PORT. Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled CONFIG: isCRSInstalled: false Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode CONFIG: Cluster.isCluster: false. Skip call to getLocalNode Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode CONFIG: isLocalNodeDone: true localNode: null Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DB_UNIQUE_NAME. Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Couldn’t get listener port. File C:apporacleproduct11.2.0dbhome_1localhost_nullsysmanconfigemoms.properties does not exists Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter SERVICE_NAME. Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:35:10 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DB_UNIQUE_NAME. Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DB_UNIQUE_NAME. Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName CONFIG: No Database unique name available. Will try to retrieve it from DB itself Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DB_UNIQUE_NAME value: hrms Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DB_DOMAIN. Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.DatabaseChecks getDbDomain CONFIG: No db domain available. Will query db for db_domain parameter Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DB_DOMAIN value: localhost Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: SERVICE_NAME value: hrmslocalhost Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode CONFIG: isLocalNodeDone: true localNode: null Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured CONFIG: Sid: hrms Host: localhost Node: null OH: C:apporacleproduct11.2.0dbhome_1 isDBC: true Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured CONFIG: Sid: hrms Host: localhost Node: null OH: C:apporacleproduct11.2.0dbhome_1 agentHome: null isCentral: false Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured CONFIG: Sid: hrms Host: localhost Node: null OH: C:apporacleproduct11.2.0dbhome_1 agentHome: null isCentral: false Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.util.ClusterUtil isHASInstalled CONFIG: isHAInstalled: false Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter SYS_PWD. Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter SYSMAN_PWD. Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter PORT. Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode CONFIG: isLocalNodeDone: true localNode: null Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: PORT value: 1521 Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘asm_db’ set to false Jun 25, 2011 8:35:11 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘asm_db’ set to false Jun 25, 2011 8:35:23 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: CONFIRMATION ANSWER value: yes Jun 25, 2011 8:35:30 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: LISTENER_OH value: LISTENER Jun 25, 2011 8:35:35 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter SYS_PWD. Jun 25, 2011 8:35:35 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ASM_OH. Jun 25, 2011 8:35:35 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:35:35 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:35:35 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter SYSMAN_PWD. Jun 25, 2011 8:35:35 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:35:35 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:35:35 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:35:35 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: SYS Jun 25, 2011 8:35:36 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:35:41 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ASM_OH. Jun 25, 2011 8:35:41 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:35:41 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:35:41 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter SYSMAN_PWD. Jun 25, 2011 8:35:41 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:35:41 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:35:41 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: DBSNMP Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: ORA-01017: invalid username/password; logon denied oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01017: invalid username/password; logon denied at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1655) at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:978) at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:917) at oracle.sysman.emcp.util.GeneralUtil.initSQLEngineLoacly(GeneralUtil.java:441) at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:637) at oracle.sysman.emcp.DatabaseChecks.validateUserCredentials(DatabaseChecks.java:1066) at oracle.sysman.emcp.ParamsManager.validatePassword(ParamsManager.java:3417) at oracle.sysman.emcp.EMConfigAssistant.promptForData(EMConfigAssistant.java:701) at oracle.sysman.emcp.EMConfigAssistant.promptForParams(EMConfigAssistant.java:2979) at oracle.sysman.emcp.EMConfigAssistant.displayWarnsAndPromptParams(EMConfigAssistant.java:3008) at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:3033) at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1290) at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:574) at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:522) Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter SYSMAN_PWD. Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: SYS Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter SYSMAN_PWD. Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: DBSNMP Jun 25, 2011 8:35:42 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: ORA-01017: invalid username/password; logon denied oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01017: invalid username/password; logon denied at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1655) at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:978) at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:917) at oracle.sysman.emcp.util.GeneralUtil.initSQLEngineLoacly(GeneralUtil.java:441) at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:637) at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:626) at oracle.sysman.emcp.DatabaseChecks.validateUserCredentials(DatabaseChecks.java:1126) at oracle.sysman.emcp.ParamsManager.validatePassword(ParamsManager.java:3417) at oracle.sysman.emcp.EMConfigAssistant.promptForData(EMConfigAssistant.java:701) at oracle.sysman.emcp.EMConfigAssistant.promptForParams(EMConfigAssistant.java:2979) at oracle.sysman.emcp.EMConfigAssistant.displayWarnsAndPromptParams(EMConfigAssistant.java:3008) at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:3033) at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1290) at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:574) at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:522) Jun 25, 2011 8:35:50 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ASM_OH. Jun 25, 2011 8:35:50 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:35:50 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:35:50 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter SYSMAN_PWD. Jun 25, 2011 8:35:50 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:35:50 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:35:50 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:35:50 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: DBSNMP Jun 25, 2011 8:35:51 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:35:56 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: EMAIL_ADDRESS value: Jun 25, 2011 8:35:57 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: MAIL_SERVER_NAME value: Jun 25, 2011 8:35:57 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:35:57 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: CONFIRMATION ANSWER value: Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: CONFIRMATION ANSWER value: yes Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.EMConfig restoreOuiLoc CONFIG: Restoring oracle.installer.oui_loc to C:apporacleproduct11.2.0dbhome_1oui Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter LOG_FILE. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.EMConfig addEMCALogFile CONFIG: ORACLE_BASE :C:apporacle Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.EMConfig restoreOuiLoc CONFIG: Restoring oracle.installer.oui_loc to C:apporacleproduct11.2.0dbhome_1oui Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.EMConfig restoreOuiLoc CONFIG: Restoring oracle.installer.oui_loc to C:apporacleproduct11.2.0dbhome_1oui Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.EMConfig perform INFO: This operation is being logged at C:apporaclecfgtoollogsemcahrmsemca_2011_06_25_20_35_05.log. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled CONFIG: isCRSInstalled: false Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.EMConfig restoreOuiLoc CONFIG: Restoring oracle.installer.oui_loc to C:apporacleproduct11.2.0dbhome_1oui Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.EMConfig restoreOuiLoc CONFIG: Restoring oracle.installer.oui_loc to C:apporacleproduct11.2.0dbhome_1oui Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: EM_HOME value: C:apporacleproduct11.2.0dbhome_1 Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘CHECK_CONFIG’ set to true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ASM_OH. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: SYS Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ASM_OH. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: DBSNMP Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter MODIFY_SID. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: SYS Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘asm_db’ set to false Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter MODIFY_SID. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName CONFIG: No service name available. Will try to set db_unique_name.db_domain Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: SYS Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DB_UNIQUE_NAME value: Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DB_UNIQUE_NAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName CONFIG: No Database unique name available. Will try to retrieve it from DB itself Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DB_UNIQUE_NAME value: hrms Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DB_DOMAIN value: localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DB_UNIQUE_NAME value: hrms Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: SERVICE_NAME value: hrmslocalhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter MODIFY_SID. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DBID. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.DatabaseChecks getDbid CONFIG: No dbid available. Will query db to extract it. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: SYS Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DBID value: 801077252 Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘db’ set to true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter MODIFY_SID. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName CONFIG: No service name available. Will try to set db_unique_name.db_domain Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: SYS Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DB_UNIQUE_NAME value: Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DB_UNIQUE_NAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName CONFIG: No Database unique name available. Will try to retrieve it from DB itself Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DB_UNIQUE_NAME value: hrms Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DB_DOMAIN value: localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DB_UNIQUE_NAME value: hrms Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: SERVICE_NAME value: hrmslocalhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter EMAIL_ADDRESS. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter MAIL_SERVER_NAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: SYS Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.EMDBPreConfig invoke CONFIG: Passed repository configuration check Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter MODIFY_SID. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter MODIFY_SID. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter GLOBAL_DB_UNIQUE_NAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName CONFIG: No Global database unique name available. Will try to retrieve it from DB itself Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: SYS Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DB_DOMAIN value: localhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: hrmslocalhost Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.FileUtil _copyFile CONFIG: Copying file C:apporacleproduct11.2.0dbhome_1sysmanconfigemd.properties to C:apporacleproduct11.2.0dbhome_1sysmanconfigemd.properties.emca.tmp Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.FileUtil backupFile CONFIG: The original file C:apporacleproduct11.2.0dbhome_1sysmanconfigemd.properties has been copied to C:apporacleproduct11.2.0dbhome_1sysmanconfigemd.properties.emca.tmp Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.FileUtil _copyFile CONFIG: Copying file C:apporacleproduct11.2.0dbhome_1sysmanconfigemoms.properties to C:apporacleproduct11.2.0dbhome_1sysmanconfigemoms.properties.emca.tmp Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.FileUtil backupFile CONFIG: The original file C:apporacleproduct11.2.0dbhome_1sysmanconfigemoms.properties has been copied to C:apporacleproduct11.2.0dbhome_1sysmanconfigemoms.properties.emca.tmp Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.FileUtil _copyFile CONFIG: Copying file C:apporacleproduct11.2.0dbhome_1sysmanemdtargets.xml to C:apporacleproduct11.2.0dbhome_1sysmanemdtargets.xml.emca.tmp Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.FileUtil backupFile CONFIG: The original file C:apporacleproduct11.2.0dbhome_1sysmanemdtargets.xml has been copied to C:apporacleproduct11.2.0dbhome_1sysmanemdtargets.xml.emca.tmp Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.ClusterUtil isHASInstalled CONFIG: isHAInstalled: false Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode CONFIG: isLocalNodeDone: true localNode: null Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘IS_CENTRAL_AGENT_RECONFIG’ set to false Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode CONFIG: isLocalNodeDone: true localNode: null Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured CONFIG: Sid: hrms Host: localhost Node: null OH: C:apporacleproduct11.2.0dbhome_1 agentHome: null isCentral: false Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured CONFIG: Sid: hrms Host: localhost Node: null OH: C:apporacleproduct11.2.0dbhome_1 isDBC: true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘IS_CENTRAL_AGENT_CONFIGURED’ set to false Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager setFlag CONFIG: Flag ‘IS_DBCONTROL_CONFIGURED’ set to true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter AGENT_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter RMI_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter JMS_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode CONFIG: isLocalNodeDone: true localNode: null Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured CONFIG: Sid: hrms Host: localhost Node: null OH: C:apporacleproduct11.2.0dbhome_1 isDBC: true Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter PORTS_FILE. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode CONFIG: isLocalNodeDone: true localNode: null Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter JMS_PORT_null. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter JMS_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter RMI_PORT_null. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter RMI_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_null. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter AGENT_PORT_null. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter AGENT_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.FileUtil getProperties CONFIG: Error reading file C:apporacleproduct11.2.0dbhome_1installstaticports.ini Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.PortManager findUsedPortsFromXML CONFIG: Could not find or correctly parse file C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfigjms.xml in searching for tag jms-server with attribute port java.io.FileNotFoundException: C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfigjms.xml (The system cannot find the path specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.(FileInputStream.java:106) at java.io.FileInputStream.(FileInputStream.java:66) at java.io.FileReader.(FileReader.java:41) at oracle.sysman.emcp.util.PortManager.findUsedPortsFromXML(PortManager.java:296) at oracle.sysman.emcp.util.PortManager.getConfiguredPorts(PortManager.java:472) at oracle.sysman.emcp.EMDBPreConfig.getConfiguredPorts(EMDBPreConfig.java:3043) at oracle.sysman.emcp.EMDBPreConfig.getConfiguredPorts(EMDBPreConfig.java:2946) at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2661) at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:864) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:282) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:195) at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:250) at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:590) at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1453) at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:574) at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:522) Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.PortManager findUsedPortsFromXML CONFIG: Could not find or correctly parse file C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfigrmi.xml in searching for tag rmi-server with attribute port java.io.FileNotFoundException: C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfigrmi.xml (The system cannot find the path specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.(FileInputStream.java:106) at java.io.FileInputStream.(FileInputStream.java:66) at java.io.FileReader.(FileReader.java:41) at oracle.sysman.emcp.util.PortManager.findUsedPortsFromXML(PortManager.java:296) at oracle.sysman.emcp.util.PortManager.getConfiguredPorts(PortManager.java:478) at oracle.sysman.emcp.EMDBPreConfig.getConfiguredPorts(EMDBPreConfig.java:3043) at oracle.sysman.emcp.EMDBPreConfig.getConfiguredPorts(EMDBPreConfig.java:2946) at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2661) at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:864) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:282) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:195) at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:250) at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:590) at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1453) at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:574) at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:522) Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.PortManager findUsedPortsFromXML CONFIG: Could not find or correctly parse file C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfighttp-web-site.xml in searching for tag web-site with attribute port java.io.FileNotFoundException: C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfighttp-web-site.xml (The system cannot find the path specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.(FileInputStream.java:106) at java.io.FileInputStream.(FileInputStream.java:66) at java.io.FileReader.(FileReader.java:41) at oracle.sysman.emcp.util.PortManager.findUsedPortsFromXML(PortManager.java:296) at oracle.sysman.emcp.util.PortManager.getConfiguredPorts(PortManager.java:484) at oracle.sysman.emcp.EMDBPreConfig.getConfiguredPorts(EMDBPreConfig.java:3043) at oracle.sysman.emcp.EMDBPreConfig.getConfiguredPorts(EMDBPreConfig.java:2946) at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2661) at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:864) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:282) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:195) at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:250) at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:590) at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1453) at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:574) at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:522) Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.PortManager getConfiguredPorts CONFIG: Incomplete EM configuration detected in file C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfigjms.xml. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.EMDBPreConfig getConfiguredPorts CONFIG: Incomplete EM configuration detected in file C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfigjms.xml. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.EMDBPreConfig checkPorts CONFIG: Error retrieving existing Database Control ports. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter PORTS_FILE. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode CONFIG: isLocalNodeDone: true localNode: null Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter JMS_PORT_localhost. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter JMS_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter RMI_PORT_localhost. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter RMI_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_localhost. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter AGENT_PORT_localhost. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter AGENT_PORT. Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc CONFIG: Setting oracle.installer.oui_loc to C:apporacleproduct11.2.0dbhome_1oui Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts CONFIG: Homes to scan for used ports: [C:apporacleproduct11.2.0dbhome_1] Jun 25, 2011 8:36:00 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME C:apporacleproduct11.2.0dbhome_1 Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts CONFIG: Marking JMS port: null from C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts CONFIG: Marking RMI port: null from C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts CONFIG: Marking HTTP port: null from C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager findUsedPortsFromXML CONFIG: Could not find or correctly parse file C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfigjms.xml in searching for tag jms-server with attribute port java.io.FileNotFoundException: C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfigjms.xml (The system cannot find the path specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.(FileInputStream.java:106) at java.io.FileInputStream.(FileInputStream.java:66) at java.io.FileReader.(FileReader.java:41) at oracle.sysman.emcp.util.PortManager.findUsedPortsFromXML(PortManager.java:296) at oracle.sysman.emcp.util.PortManager.markAllUsedPorts(PortManager.java:1297) at oracle.sysman.emcp.util.PortManager.getFreePorts(PortManager.java:592) at oracle.sysman.emcp.EMDBPreConfig.getFreePorts(EMDBPreConfig.java:2742) at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2677) at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:864) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:282) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:195) at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:250) at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:590) at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1453) at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:574) at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:522) Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts CONFIG: Marking JMS port: null from C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrms Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager findUsedPortsFromXML CONFIG: Could not find or correctly parse file C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfigrmi.xml in searching for tag rmi-server with attribute port java.io.FileNotFoundException: C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfigrmi.xml (The system cannot find the path specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.(FileInputStream.java:106) at java.io.FileInputStream.(FileInputStream.java:66) at java.io.FileReader.(FileReader.java:41) at oracle.sysman.emcp.util.PortManager.findUsedPortsFromXML(PortManager.java:296) at oracle.sysman.emcp.util.PortManager.markAllUsedPorts(PortManager.java:1301) at oracle.sysman.emcp.util.PortManager.getFreePorts(PortManager.java:592) at oracle.sysman.emcp.EMDBPreConfig.getFreePorts(EMDBPreConfig.java:2742) at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2677) at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:864) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:282) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:195) at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:250) at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:590) at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1453) at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:574) at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:522) Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts CONFIG: Marking RMI port: null from C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrms Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager findUsedPortsFromXML CONFIG: Could not find or correctly parse file C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfighttp-web-site.xml in searching for tag web-site with attribute port java.io.FileNotFoundException: C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrmsconfighttp-web-site.xml (The system cannot find the path specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.(FileInputStream.java:106) at java.io.FileInputStream.(FileInputStream.java:66) at java.io.FileReader.(FileReader.java:41) at oracle.sysman.emcp.util.PortManager.findUsedPortsFromXML(PortManager.java:296) at oracle.sysman.emcp.util.PortManager.markAllUsedPorts(PortManager.java:1305) at oracle.sysman.emcp.util.PortManager.getFreePorts(PortManager.java:592) at oracle.sysman.emcp.EMDBPreConfig.getFreePorts(EMDBPreConfig.java:2742) at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2677) at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:864) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:282) at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:195) at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:250) at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:590) at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1453) at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:574) at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:522) Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts CONFIG: Marking HTTP port: null from C:apporacleproduct11.2.0dbhome_1oc4jj2eeOC4J_DBConsole_localhost_hrms Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts CONFIG: Marking Agent port: 3938 from C:apporacleproduct11.2.0dbhome_1localhost_hrmssysmanconfigemd.properties Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager getAgentPort CONFIG: Cannot parse EMD_URL correctly. No port identified Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts CONFIG: Marking Agent port: null from C:apporacleproduct11.2.0dbhome_1sysmanconfigemd.properties Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts CONFIG: Cannnot parse EMD_URL correctly. No port identified Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.FileUtil getProperties CONFIG: Error reading file C:apporacleproduct11.2.0dbhome_1installstaticports.ini Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PortManager getFreePorts CONFIG: C:apporacleproduct11.2.0dbhome_1:localhost:null:hrms:{}:null:{DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938} Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter AGENT_PORT_localhost. Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: AGENT_PORT_localhost value: 3938 Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_localhost. Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: DBCONTROL_HTTP_PORT_localhost value: 1158 Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter JMS_PORT_localhost. Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: JMS_PORT_localhost value: 5540 Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter RMI_PORT_localhost. Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: RMI_PORT_localhost value: 5520 Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.EMDBPreConfig getFreePorts CONFIG: Ports assigned for Node: localhost : {DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938} Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.DBControlUtil stopOMS INFO: Stopping Database Control (this may take a while) … Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand CONFIG: cmdType: 1 Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PlatformInterface isPre112Home CONFIG: oracleHome: C:apporacleproduct11.2.0dbhome_1 isPre112Home: false Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand CONFIG: Service does not exist Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode CONFIG: isLocalNodeDone: true localNode: null Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PlatformInterface getSortedEnvArray CONFIG: New Env List: [ALLUSERSPROFILE=C:ProgramData, APPDATA=C:UsersoracleAppDataRoaming, CLASSPATH=C:apporacleproduct11.2.0dbhome_1jlibemca.jar;C:apporacleproduct11.2.0dbhome_1jlibsrvm.jar;C:apporacleproduct11.2.0dbhome_1jlibsrvmasm.jar;C:apporacleproduct11.2.0dbhome_1jlibcvu.jar;C:apporacleproduct11.2.0dbhome_1jlibemConfigInstall.jar;C:apporacleproduct11.2.0dbhome_1jlibldapjclnt11.jar;C:apporacleproduct11.2.0dbhome_1jlibldap.jar;C:apporacleproduct11.2.0dbhome_1jlibshare.jar;C:apporacleproduct11.2.0dbhome_1jlibsrvmhas.jar;C:apporacleproduct11.2.0dbhome_1jlibnetcfg.jar;C:apporacleproduct11.2.0dbhome_1jlibhttp_client.jar;C:apporacleproduct11.2.0dbhome_1libhttp_client.jar;C:apporacleproduct11.2.0dbhome_1libxmlparserv2.jar;C:apporacleproduct11.2.0dbhome_1assistantsjlibassistantsCommon.jar;C:apporacleproduct11.2.0dbhome_1sysmanjlibemCORE.jar;C:apporacleproduct11.2.0dbhome_1sysmanjlibemagentSDK.jar;C:apporacleproduct11.2.0dbhome_1ouijlibOraInstaller.jar;C:apporacleproduct11.2.0dbhome_1ouijlibOraPrereq.jar;C:apporacleproduct11.2.0dbhome_1inventoryprereqsouiOraPrereqChecks.jar;C:apporacleproduct11.2.0dbhome_1ouijlibOraPrereqChecks.jar;, COMMONPROGRAMFILES=C:Program FilesCommon Files, COMMONPROGRAMFILES(X86)=C:Program Files (x86)Common Files, COMMONPROGRAMW6432=C:Program FilesCommon Files, COMPUTERNAME=HRMSDB, COMSPEC=C:Windowssystem32cmd.exe, EMCA_JAR=C:apporacleproduct11.2.0dbhome_1jlibemca.jar, EMDROOT=C:apporacleproduct11.2.0dbhome_1, FP_NO_HOST_CHECK=NO, HOMEDRIVE=C:, HOMEPATH=Usersoracle, JRE_JAVA=C:apporacleproduct11.2.0dbhome_1jdkjrebinjava, LD_LIBRARY_PATH=C:apporacleproduct11.2.0dbhome_1lib32;C:apporacleproduct11.2.0dbhome_1lib;C:apporacleproduct11.2.0dbhome_1perllib;null, LIB_DIR=C:apporacleproduct11.2.0dbhome_1jlib, LOCALAPPDATA=C:UsersoracleAppDataLocal, LOGONSERVER=\\HRMSDB, NUMBER_OF_PROCESSORS=16, OH=C:apporacleproduct11.2.0dbhome_1, ORACLE_SID=hrms, ORACLE_UNQNAME=hrms, OS=Windows_NT, PATH=C:apporacleproduct11.2.0dbhome_1bin;C:apporacleproduct11.2.0dbhome_1jdkjrebinserver;C:apporacleproduct11.2.0dbhome_1bin;C:apporacleproduct11.2.0dbhome_1bin;C:Windowssystem32;C:Windows;C:WindowsSystem32Wbem;C:WindowsSystem32WindowsPowerShellv1.0, PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, PERL5LIB=C:apporacleproduct11.2.0dbhome_1sysmanadminscripts;C:apporacleproduct11.2.0dbhome_1bin;, PROCESSOR_ARCHITECTURE=AMD64, PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 44 Stepping 2, GenuineIntel, PROCESSOR_LEVEL=6, PROCESSOR_REVISION=2c02, PROGRAMDATA=C:ProgramData, PROGRAMFILES=C:Program Files, PROGRAMFILES(X86)=C:Program Files (x86), PROGRAMW6432=C:Program Files, PROMPT=$P$G, PSMODULEPATH=C:Windowssystem32WindowsPowerShellv1.0Modules, PUBLIC=C:UsersPublic, SYSTEMDRIVE=C:, SYSTEMROOT=C:Windows, TEMP=C:UsersoracleAppDataLocalTemp, TMP=C:UsersoracleAppDataLocalTemp, USERDOMAIN=HRMSDB, USERNAME=oracle, USERPROFILE=C:Usersoracle, WINDIR=C:Windows, WINDOWS_TRACING_FLAGS=3, WINDOWS_TRACING_LOGFILE=C:BVTBinTestsinstallpackagecsilogfile.log] Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PlatformInterface executeCommand CONFIG: Starting execution: C:/app/oracle/product/11.2.0/dbhome_1/perl/binperl.exe C:apporacleproduct11.2.0dbhome_1sysmanadminscriptsdbsgastop.pl stop hrms localhost 1521 C:apporacleproduct11.2.0dbhome_1 Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PlatformInterface executeCommand CONFIG: Exit value of 0 Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PlatformInterface executeCommand CONFIG: Execution of C:/app/oracle/product/11.2.0/dbhome_1/perl/binperl.exe C:apporacleproduct11.2.0dbhome_1sysmanadminscriptsdbsgastop.pl stop hrms localhost 1521 C:apporacleproduct11.2.0dbhome_1 completed successfully Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PlatformInterface executeCommand CONFIG: nmccollector process does not exist Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.DBControlUtil stopNmccollector CONFIG: Successfully stopped nmc-collector process Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand CONFIG: cmdType: 2 Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PlatformInterface isPre112Home CONFIG: oracleHome: C:apporacleproduct11.2.0dbhome_1 isPre112Home: false Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand CONFIG: Service does not exist Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager getParam CONFIG: No value was set for the parameter ORACLE_HOSTNAME. Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode CONFIG: isLocalNodeDone: true localNode: null Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.EMDBPreConfig copyAgentTimeStampFile CONFIG: File: C:apporacleproduct11.2.0dbhome_1localhost_hrmssysmanemdagntstmp.txt:localhost does not exists. Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager getHost CONFIG: Host having instnces running for database hrms : localhost Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager setParam CONFIG: Setting param: REP_DB_RUNNING_HOST value: localhost Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.ParamsManager getRepDbPort CONFIG: Listener Port: 1521 Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired CONFIG: isLocalConnectionRequired: true Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally. Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine connecting with SID: hrms, oracleHome: C:apporacleproduct11.2.0dbhome_1, and user: SYS Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly CONFIG: SQLEngine created successfully and connected Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.EMReposConfig createRepository CONFIG: Spooling to C:apporaclecfgtoollogsemcahrmsemca_repos_create_2011_06_25_20_36_01.log Jun 25, 2011 8:36:01 PM oracle.sysman.emcp.EMReposConfig createRepository INFO: Creating the EM repository (this may take a while) … Jun 25, 2011 8:36:02 PM oracle.sysman.emcp.EMReposConfig createRepository CONFIG: ORA-20001: SYSMAN already exists.. ORA-06512: at line 17 oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-20001: SYSMAN already exists.. ORA-06512: at line 17 at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1655) at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeScript(SQLEngine.java:1005) at oracle.sysman.assistants.util.sqlEngine.SQLPlusEngine.executeScript(SQLPlusEngine.java:339) at oracle.sysman.assistants.util.sqlEngine.SQLPlusEngine.executeScript(SQLPlusEngine.java:380) at oracle.sysman.emcp.EMReposConfig.createRepository(EMReposConfig.java:511) at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:229) at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:158) at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:253) at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:590) at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1453) at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:574) at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:522) Jun 25, 2011 8:36:02 PM oracle.sysman.emcp.EMReposConfig invoke SEVERE: Error creating the repository Jun 25, 2011 8:36:02 PM oracle.sysman.emcp.EMReposConfig invoke INFO: Refer to the log file at C:apporaclecfgtoollogsemcahrmsemca_repos_create_.log for more details. Jun 25, 2011 8:36:02 PM oracle.sysman.emcp.EMConfig perform SEVERE: Error creating the repository Refer to the log file at C:apporaclecfgtoollogsemcahrmsemca_2011_06_25_20_35_05.log for more details. Jun 25, 2011 8:36:02 PM oracle.sysman.emcp.EMConfig perform CONFIG: Stack Trace: oracle.sysman.emcp.exception.EMConfigException: Error creating the repository at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:241) at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:158) at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:253) at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:590) at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1453) at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:574) at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:522) Jun 25, 2011 8:36:02 PM oracle.sysman.emcp.EMConfig restoreOuiLoc CONFIG: Restoring oracle.installer.oui_loc to C:apporacleproduct11.2.0dbhome_1oui
      • I can see two errors in the log file. one is invalid username/password and other is SYSMAN user already exists.
        so, try to configure enterprise manager with DBCA or drop SYSMAN user and run manual commands. those commands itself will create SYSMAN user

  7. Shehzad Ahmed said

    i install oracle 10g on windows 7
    but i face problem in starting of EM
    and on this command “c:>emctl start dbconsole”

    plz help me

  8. Shehzad Ahmed said

    Recently i started learning about oracle 10g

    My operating system is windows 7
    i install oracle 10g secsessfuly
    but there is probelm in starting EM
    and
    problem in this command c:>emctl start dbconsole
    plz help me

  9. edgar said

    Hi I have the same error with the console EM , a get the message

    Is windows 2003 sp2

    Db 10g with patch 10.2.0.4

    2010-10-21 15:37:23 Thread-964 ERROR main: nmectl.c: nmectl_validateTZRegion, agentTZoffset =-270,and testTZoffset for Etc/GMT-4:240 do not match
    2010-10-21 15:37:24 Thread-964 ERROR main: nmectl.c: nmectl_validateTZRegion, agentTZoffset =-270,and testTZoffset for Etc/GMT-4:240 do not match
    2010-10-21 15:59:11 Thread-3616 WARN http: snmehl_connect: connect failed to (s01wdorc01:3938): No connection could be made because the target machine actively refused it.
    (error = 10061)
    2010-10-21 16:01:49 Thread-3960 WARN http: snmehl_connect: connect failed to (s01wdorc01:3938): No connection could be made because the target machine actively refused it.
    (error = 10061)
    2010-10-21 16:02:10 Thread-1504 WARN http: snmehl_connect: connect failed to (s01wdorc01:3938): No connection could be made because the target machine actively refused it.
    (error = 10061)

  10. Anna Goulet said

    Thanks Pavan. I was having the same 3547 message and these steps worked like a charm to get my dbconsole running again!

  11. Thomas Männer said

    Thanks a lot for the detailed description. I had exactly the same issue with my private ora10g! The same procedure helped me getting my dbconsole running again.

    Thanx again!!!

    • its gr8 to hear that such posts of mine is helpful….wishing to post more n more in future…thanks alot for commenting

      • hi Pavan,

        thanks for this information. I have actually tried to recreate dbconsole and it is stopping at
        INFO: Dropping the EM Repositery (this may take a while)…………..
        and it’s not moving from that place.I even checked the log and shows nothing.

        Please help me out in this!

        Thanks

        Sunil

      • Hi Sunil, can you provide the OS and DB versions?

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

 
%d bloggers like this: