Remove sysman

Hello everyone,
is there any script which allows me to make a clean remove of the sysman user?
regards

emca -repos drop
1. Remove the repository objects from the database with the following commands:
Stop the DB Control web site and logon to SQLPLUS as user SYS or SYSTEM, and drop the sysman account and mangement objects:
SHUTDOWN IMMEDIATE;
STARTUP RESTRICT;
EXEC sysman.emd_maintenance.remove_em_dbms_jobs;
EXEC sysman.setEMUserContext('',5);
REVOKE dba FROM sysman;
DECLARE
CURSOR c1 IS
SELECT owner, synonym_name name
FROM dba_synonyms
WHERE table_owner = 'SYSMAN'
BEGIN
FOR r1 IN c1 LOOP
IF r1.owner = 'PUBLIC' THEN
EXECUTE IMMEDIATE 'DROP PUBLIC SYNONYM '||r1.name;
ELSE
EXECUTE IMMEDIATE 'DROP SYNONYM '||r1.owner||'.'||r1.name;
END IF;
END LOOP;
END;
DROP USER mgmt_view CASCADE;
DROP ROLE mgmt_user;
DROP USER sysman CASCADE;
ALTER SYSTEM DISABLE RESTRICTED SESSION;
Note that the section from "DECLARE" to "END;" is PL/SQL and, while it can be copied and pasted into a SQL*Plus session, it will need to be terminat
ed with a slash (/) on its own line before executing with a carriage return.
You can see if sysman exists in dba_users to verify the effectiveness of the proced
ure (select * from dba_users;).
2. Remove the existing DB Control web site configuration in the OS file system by running the command:
emca -x <sid> (where you supply the SID name, i.e. emca -x orcl)
This command remove the following directories from the database Oracle Home:
O_H/<host>_<sid>
O_H/oc4j/j2ee/OC4J_DBConsole_<host>_<SID>
If they are not removed in the emca -x <sid> process, delete them manually.
3. Recreate both the repository objects and the DB control web site with the following command:
emca
This command opens up an interview process in which you will pass the information required to both recreate the rep
ository objects and the web site configuration.
Note:
Port number refers to tnslistener port
The value for sid and service name are normally the same
You can leave the email configuration entries blank, since they can be added later
You will need to remember the passwords for sys and dbsnmp from the database, so reset
them in SQL*Plus if you have forgotten them.
At the end of the emca command, the DB Control web site should be started and you should be able to log in through
a browser.

Similar Messages

  • Emctl failed to start

    Hi
    It is a new configuration of EMCA on clone instance in EBS R12.1.3 on linux (RHEL5.5) x86_64.DB:11.1.0.7
    emca -config dbcontrol db -repos recreate
    failed with error for not getting proper emkey.ora which is not with our any of instance ever.
    Aug 27, 2013 5:30:41 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 27, 2013 5:30:41 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Aug 27, 2013 5:30:41 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Can't find file /oracle/TEST/db/tech_st/11.1.0/ERPTEST.BIL.COM_TEST/sysman/config/emoms.properties
    Refer to the log file at /oracle/TEST/db/tech_st/11.1.0/cfgtoollogs/emca/TEST/emca_2013_08_27_17_30_21.log for more details.
    Aug 27, 2013 5:30:41 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    java.lang.IllegalStateException: Can't find file /oracle/TEST/db/tech_st/11.1.0/ERPTEST.BIL.COM_TEST/sysman/config/emoms.properties
        at oracle.sysman.emSDK.conf.ConfigManager.processProperties(ConfigManager.java:1126)
        at oracle.sysman.emSDK.conf.ConfigManager.processProperties(ConfigManager.java:1104)
        at oracle.sysman.emcp.EMReposConfig.stopDBMSJobs(EMReposConfig.java:1125)
    [appltest@ERPTEST TEST]$ emctl getemhome
    Oracle Enterprise Manager 11g Database Control Release 11.1.0.7.0
    Copyright (c) 1996, 2008 Oracle Corporation.  All rights reserved.
    EMHOME=/oracle/TEST/db/tech_st/11.1.0/ERPTEST.BIL.COM_TEST
    [appltest@ERPTEST TEST]$ emctl start dbconsole
    Unable to determine local host from URL REPOSITORY_URL=http://ERPTEST.BIL.COM:%EM_UPLOAD_PORT%/em/upload/
    what to do?Its non RAC environment.
    [appltest@ERPTEST TEST]$ emctl reload
    Oracle Enterprise Manager 11g Database Control Release 11.1.0.7.0
    Copyright (c) 1996, 2008 Oracle Corporation.  All rights reserved.
    Malformed URL: http://ERPTEST.BIL.COM:%EM_SERVLET_PORT%/emd/main/
    Can't connect to http://ERPTEST.BIL.COM:%EM_SERVLET_PORT%/emd/main/
    reload failed with ret=6
    I used this script to remove sysman when i droped and recreated it.
    sqlplus / as sysdba << EOF
    exec DBMS_AQADM.DROP_QUEUE_TABLE(queue_table=>'SYSMAN.MGMT_NOTIFY_QTABLE',force =>TRUE);
    SHUTDOWN IMMEDIATE;
    STARTUP RESTRICT;
    EXEC sysman.emd_maintenance.remove_em_dbms_jobs;
    EXEC sysman.setEMUserContext('',5);
    REVOKE dba FROM sysman;
    DECLARE
    CURSOR c1 IS
    SELECT owner, synonym_name name
    FROM dba_synonyms
    WHERE table_owner = 'SYSMAN';
    BEGIN
    FOR r1 IN c1 LOOP
    IF r1.owner = 'PUBLIC' THEN
    EXECUTE IMMEDIATE 'DROP PUBLIC SYNONYM '||r1.name;
    ELSE
    EXECUTE IMMEDIATE 'DROP SYNONYM '||r1.owner||'.'||r1.name;
    END IF;
    END LOOP;
    END;
    DROP USER mgmt_view CASCADE;
    DROP ROLE mgmt_user;
    DROP USER sysman CASCADE;
    ALTER SYSTEM DISABLE RESTRICTED SESSION;
    EOF
    Thanks And Regards
    I have already read this docs but found no luck:
    Problem - emctl start dbconsole Fails with Error OC4J Configuration issue OC4J_DBConsole__ not found [ID 555218.1]
    Linux 64bit DBConsole Fails With "OC4J Configuration issue cannot find /oc4j/j2ee/oc4j_DBConsole_..." [ID 462325.1]
    Troubleshooting DbConsole Error - OC4J Configuration issue [ID 456111.1]
    The Database Console Fails to Start After a Change in the Hostname [ID 467598.1]

    [root@ERPTEST ~]# su - appltest
    [appltest@ERPTEST ~]$ . DB_TEST_erptest.env
    [appltest@ERPTEST ~]$  emca -deconfig dbcontrol db -repos drop
    STARTED EMCA at Aug 29, 2013 10:34:11 AM
    EM Configuration Assistant, Version 11.1.0.7.0 Production
    Copyright (c) 2003, 2005, Oracle.  All rights reserved.
    Enter the following information:
    Database SID: TEST
    Listener port number: 1528
    Password for SYSMAN user:
    Password for SYSMAN user:
    Do you wish to continue? [yes(Y)/no(N)]: Y
    Aug 29, 2013 10:34:41 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /oracle/TEST/db/tech_st/11.1.0/cfgtoollogs/emca/TEST/emca_2013_08_29_10_34_11.log.
    Aug 29, 2013 10:34:41 AM oracle.sysman.emcp.util.DBControlUtil stopOMS
    INFO: Stopping Database Control (this may take a while) ...
    Aug 29, 2013 10:34:43 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /oracle/TEST/db/tech_st/11.1.0/bin/emctl stop dbconsole
    Aug 29, 2013 10:34:43 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Dropping the EM repository (this may take a while) ...
    Aug 29, 2013 10:52:53 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully dropped
    Enterprise Manager configuration completed successfully
    FINISHED EMCA at Aug 29, 2013 10:52:59 AM
    [appltest@ERPTEST ~]$ emctl status dbconsole
    OC4J Configuration issue. /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST not found.
    [appltest@ERPTEST ~]$ ls /oracle/TEST/db/tech_st/11.1.0/ERPTEST.BIL.COM_TEST/sysman/config/
    ls: /oracle/TEST/db/tech_st/11.1.0/ERPTEST.BIL.COM_TEST/sysman/config/: No such file or directory
    [appltest@ERPTEST ~]$ emca -repos create
    STARTED EMCA at Aug 29, 2013 10:58:14 AM
    EM Configuration Assistant, Version 11.1.0.7.0 Production
    Copyright (c) 2003, 2005, Oracle.  All rights reserved.
    Enter the following information:
    Database SID: TEST
    Listener port number: 1528
    Password for SYSMAN user:
    Password for SYSMAN user:
    Do you wish to continue? [yes(Y)/no(N)]: Y
    Aug 29, 2013 10:58:49 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /oracle/TEST/db/tech_st/11.1.0/cfgtoollogs/emca/TEST/emca_2013_08_29_10_58_14.log.
    Aug 29, 2013 10:58:49 AM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Aug 29, 2013 11:07:21 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    Enterprise Manager configuration completed successfully
    FINISHED EMCA at Aug 29, 2013 11:07:21 AM
    [appltest@ERPTEST ~]$  emca -config dbcontrol db
    STARTED EMCA at Aug 29, 2013 11:12:00 AM
    EM Configuration Assistant, Version 11.1.0.7.0 Production
    Copyright (c) 2003, 2005, Oracle.  All rights reserved.
    Enter the following information:
    Database SID: TEST
    Listener port number: 1528
    Password for SYSMAN user: Email address for notifications (optional): [email protected]
    Outgoing Mail (SMTP) server for notifications (optional):
    You have specified the following settings
    Database ORACLE_HOME ................ /oracle/TEST/db/tech_st/11.1.0
    Local hostname ................ ERPTEST.BIL.COM
    Listener port number ................ 1528
    Database SID ................ TEST
    Email address for notifications ............... [email protected]
    Outgoing Mail (SMTP) server for notifications ...............
    Do you wish to continue? [yes(Y)/no(N)]: Y
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /oracle/TEST/db/tech_st/11.1.0/cfgtoollogs/emca/TEST/emca_2013_08_29_11_12_00.log.
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
    INFO: Uploading configuration data to EM repository (this may take a while) ...
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Uploaded configuration data successfully
    Aug 29, 2013 11:13:55 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /oracle/TEST/db/tech_st/11.1.0/bin/emctl deploy dbconsole /oracle/TEST/db/tech_st/11.1.0/ERPTEST.BIL.COM_TEST ERPTEST.BIL.COM:3938 ERPTEST.BIL.COM TEST
    Aug 29, 2013 11:13:55 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error instantiating EM configuration files
    Refer to the log file at /oracle/TEST/db/tech_st/11.1.0/cfgtoollogs/emca/TEST/emca_2013_08_29_11_12_00.log for more details.
    Could not complete the configuration. Refer to the log file at /oracle/TEST/db/tech_st/11.1.0/cfgtoollogs/emca/TEST/emca_2013_08_29_11_12_00.log for more details.
    [appltest@ERPTEST ~]$ cat  /oracle/TEST/db/tech_st/11.1.0/cfgtoollogs/emca/TEST/emca_2013_08_29_11_12_00.log
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-migrate' set to false
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromDBControl' set to false
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToCentralAgent' set to false
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromCentralAgent' set to false
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToDBControl' set to false
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-config' set to true
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'UPDATE_EMAIL' set to true
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'dbcontrol' set to true
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ORACLE_HOME value: /oracle/TEST/db/tech_st/11.1.0
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:00 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EM_HOME value: /oracle/TEST/db/tech_st/11.1.0
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SID value: TEST
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: Cluster.isCluster: false. Skip call to getLocalNode
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: TEST Host: ERPTEST.BIL.COM Node: null OH: /oracle/TEST/db/tech_st/11.1.0 isDBC: false
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: TEST Host: ERPTEST.BIL.COM Node: null OH: /oracle/TEST/db/tech_st/11.1.0 agentHome: null isCentral: false
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: TEST Host: ERPTEST.BIL.COM Node: null OH: /oracle/TEST/db/tech_st/11.1.0 agentHome: null isCentral: false
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user:
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Aug 29, 2013 11:12:07 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Aug 29, 2013 11:12:11 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1528
    Aug 29, 2013 11:12:16 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Aug 29, 2013 11:12:16 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYS
    Aug 29, 2013 11:12:16 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:22 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: DBSNMP
    Aug 29, 2013 11:12:22 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:27 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYSMAN
    Aug 29, 2013 11:12:27 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:46 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EMAIL_ADDRESS value: [email protected]
    Aug 29, 2013 11:12:52 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: MAIL_SERVER_NAME value:
    Aug 29, 2013 11:12:52 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:52 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value:
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value: yes
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LOG_FILE.
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.EMConfig addEMCALogFile
    CONFIG: ORACLE_BASE :/oracle/TEST/db/tech_st/11.1.0
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYS
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: TEST
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /oracle/TEST/db/tech_st/11.1.0/cfgtoollogs/emca/TEST/emca_2013_08_29_11_12_00.log.
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'CHECK_CONFIG' set to true
    Aug 29, 2013 11:12:56 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYS
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: DBSNMP
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYS
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYS
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: TEST
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: TEST
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: TEST
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBID.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.DatabaseChecks getDbid
    CONFIG: No dbid available. Will query db to extract it.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYS
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBID value: 2075308332
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYSMAN
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_NAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYS
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.EMDBPreConfig invoke
    CONFIG: Passed repository configuration check
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter GLOBAL_DB_UNIQUE_NAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName
    CONFIG: No Global database unique name available. Will try to retrieve it from DB itself
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYS
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: TEST
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/sysman/config/emd.properties to /oracle/TEST/db/tech_st/11.1.0/sysman/config/emd.properties.emca.tmp
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file /oracle/TEST/db/tech_st/11.1.0/sysman/config/emd.properties has been copied to /oracle/TEST/db/tech_st/11.1.0/sysman/config/emd.properties.emca.tmp
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/sysman/config/emoms.properties to /oracle/TEST/db/tech_st/11.1.0/sysman/config/emoms.properties.emca.tmp
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file /oracle/TEST/db/tech_st/11.1.0/sysman/config/emoms.properties has been copied to /oracle/TEST/db/tech_st/11.1.0/sysman/config/emoms.properties.emca.tmp
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/sysman/emd/targets.xml to /oracle/TEST/db/tech_st/11.1.0/sysman/emd/targets.xml.emca.tmp
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file /oracle/TEST/db/tech_st/11.1.0/sysman/emd/targets.xml has been copied to /oracle/TEST/db/tech_st/11.1.0/sysman/emd/targets.xml.emca.tmp
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_RECONFIG' set to false
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: TEST Host: ERPTEST.BIL.COM Node: null OH: /oracle/TEST/db/tech_st/11.1.0 agentHome: null isCentral: false
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: TEST Host: ERPTEST.BIL.COM Node: null OH: /oracle/TEST/db/tech_st/11.1.0 isDBC: false
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_CONFIGURED' set to false
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_DBCONTROL_CONFIGURED' set to false
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: TEST Host: ERPTEST.BIL.COM Node: null OH: /oracle/TEST/db/tech_st/11.1.0 isDBC: false
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter PORTS_FILE.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_TEST.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_TEST.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_TEST.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_TEST.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to /oracle/TEST/db/tech_st/11.1.0/oui
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to /oracle/TEST/db/tech_st/11.1.0/oui
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Homes to scan for used ports: [/oracle/TEST/db/tech_st/11.1.0, /oracle/TEST/apps/tech_st/10.1.3, /oracle/TEST/apps/tech_st/10.1.2]
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME /oracle/TEST/db/tech_st/11.1.0
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking JMS port: null from /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking RMI port: null from /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking HTTP port: null from /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager getAgentPort
    CONFIG: Cannot parse EMD_URL correctly. No port identified
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: null from /oracle/TEST/db/tech_st/11.1.0/sysman/config/emd.properties
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Cannnot parse EMD_URL correctly. No port identified
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME /oracle/TEST/apps/tech_st/10.1.3
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.FileUtil getProperties
    CONFIG: Error reading file /oracle/TEST/apps/tech_st/10.1.3/sysman/config/emd.properties
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager getAgentPort
    CONFIG: Cannot parse EMD_URL correctly. No port identified
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: null from /oracle/TEST/apps/tech_st/10.1.3/sysman/config/emd.properties
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Cannnot parse EMD_URL correctly. No port identified
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME /oracle/TEST/apps/tech_st/10.1.2
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: 1157 from /oracle/TEST/apps/tech_st/10.1.2/sysman/config/emd.properties
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.FileUtil getProperties
    CONFIG: Error reading file /oracle/TEST/db/tech_st/11.1.0/install/staticports.ini
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.PortManager getFreePorts
    CONFIG: /oracle/TEST/db/tech_st/11.1.0:ERPTEST.BIL.COM:null:TEST:{}:null:{DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_TEST.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: AGENT_PORT_TEST value: 3938
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_TEST.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBCONTROL_HTTP_PORT_TEST value: 1158
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_TEST.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: JMS_PORT_TEST value: 5540
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_TEST.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: RMI_PORT_TEST value: 5520
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.EMDBPreConfig getFreePorts
    CONFIG: Ports assigned for SID: TEST : {DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.EMDBPreConfig copyAgentTimeStampFile
    CONFIG: File: /oracle/TEST/db/tech_st/11.1.0/ERPTEST.BIL.COM_TEST/sysman/emd/agntstmp.txt:ERPTEST.BIL.COM does not exists.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_NAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_SENDER_NAME.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_SENDER_ADDR.
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.EMReposConfig updateReposVars
    CONFIG: Updating file /oracle/TEST/db/tech_st/11.1.0/sysman/emdrep/config/repository.variables ...
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/sysman/emdrep/config/repository.variables.emca.util.tmp to /oracle/TEST/db/tech_st/11.1.0/sysman/emdrep/config/repository.variables
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.EMReposConfig updateReposVars
    CONFIG: File /oracle/TEST/db/tech_st/11.1.0/sysman/emdrep/config/repository.variables is successfully updated
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYS
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.EMReposConfig unlockAccounts
    CONFIG: Unlocking dbsnmp and sysman
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.EMReposConfig invoke
    CONFIG: Successfully unlocked relevant accounts
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYSMAN
    Aug 29, 2013 11:12:57 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Finished executing emreposoutofbox.sql
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYSMAN
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Submitting dbms job: /oracle/TEST/db/tech_st/11.1.0/sysman/admin/emdrep/sql/core/latest/admin/admin_submit_dbms_jobs.sql
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Successfully submitted dbms job
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: Unlocking mgmt view user account
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: view user sql: declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end;
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: /oracle/TEST/db/tech_st/11.1.0/sysman/admin/scripts/emca/emcaDbUtil /oracle/TEST/db/tech_st/11.1.0/perl/lib:/oracle/TEST/db/tech_st/11.1.0/perl/lib/site_perl:/oracle/TEST/db/tech_st/11.1.0/sysman/admin/scripts:/oracle/TEST/db/tech_st/11.1.0/bin: /oracle/TEST/db/tech_st/11.1.0/perl/bin/perl /oracle/TEST/db/tech_st/11.1.0/sysman/admin/scripts/emca/emcaDbUtil.pl /oracle/TEST/db/tech_st/11.1.0 TEST SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 0
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Execution of /oracle/TEST/db/tech_st/11.1.0/sysman/admin/scripts/emca/emcaDbUtil /oracle/TEST/db/tech_st/11.1.0/perl/lib:/oracle/TEST/db/tech_st/11.1.0/perl/lib/site_perl:/oracle/TEST/db/tech_st/11.1.0/sysman/admin/scripts:/oracle/TEST/db/tech_st/11.1.0/bin: /oracle/TEST/db/tech_st/11.1.0/perl/bin/perl /oracle/TEST/db/tech_st/11.1.0/sysman/admin/scripts/emca/emcaDbUtil.pl /oracle/TEST/db/tech_st/11.1.0 TEST SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD  completed successfully
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Arguments passed /oracle/TEST/db/tech_st/11.1.0 TEST SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD
    Connecting to database TEST in home /oracle/TEST/db/tech_st/11.1.0 with user "SYS" role "SYSDBA".
    connected to database.
    sql to execute declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end;
    noOfParams to bind: 1.
    sql execute successfully.
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: Unlocked mgmt_view account
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.EMReposConfig invoke
    CONFIG: Successfully unlocked mgmt_view account
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: TEST, oracleHome: /oracle/TEST/db/tech_st/11.1.0, and user: SYSMAN
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.ParamsManager checkListenerStatusForDBControl
    CONFIG: Passed listener validation check.Listener is up and running.
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:13:00 AM oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
    INFO: Uploading configuration data to EM repository (this may take a while) ...
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Uploaded configuration data successfully
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.EMDBCConfig updateEmomsProps
    CONFIG: Updating file /oracle/TEST/db/tech_st/11.1.0/sysman/config/emoms.properties ...
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/sysman/config/emoms.properties.emca to /oracle/TEST/db/tech_st/11.1.0/sysman/config/emoms.properties
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/sysman/config/emoms.properties.emca.util.tmp to /oracle/TEST/db/tech_st/11.1.0/sysman/config/emoms.properties
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/server.xml.emca.util.tmp to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/server.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.EMDBCConfig copyOC4JDir
    CONFIG: Copying OC4J config files from /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/javacache.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/javacache.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/jazn-data.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/jazn-data.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/application.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/application.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/oc4j-connectors.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/oc4j-connectors.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/mime.types to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/mime.types
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml.ouibak.1 to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-application.xml.ouibak.1
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/jazn.security.props to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/jazn.security.props
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/jazn.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/jazn.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/entity-resolver-config.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/entity-resolver-config.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/rmi.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/rmi.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/oc4j.properties to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/oc4j.properties
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/global-web-application.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/global-web-application.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/http-web-site.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/http-web-site.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/data-sources.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/data-sources.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-application.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml.ouibak.5 to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-application.xml.ouibak.5
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml.ouibak.4 to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-application.xml.ouibak.4
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-jazn-data.xml.ouibak.5 to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-jazn-data.xml.ouibak.5
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml.ouibak to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-application.xml.ouibak
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/j2ee-logging.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/j2ee-logging.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-jazn-data.xml.ouibak.1 to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-jazn-data.xml.ouibak.1
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/default-web-site.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/default-web-site.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-jazn-data.xml.ouibak.3 to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-jazn-data.xml.ouibak.3
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/principals.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/principals.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-jazn-data.xml.ouibak to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-jazn-data.xml.ouibak
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml.ouibak.2 to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-application.xml.ouibak.2
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-jazn-data.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-jazn-data.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/server.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/server.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/jms.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/jms.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/internal-settings.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/internal-settings.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/orb-config.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/orb-config.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-jazn-data.xml.ouibak.4 to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-jazn-data.xml.ouibak.4
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/java2.policy to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/java2.policy
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-application.xml.ouibak.3 to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-application.xml.ouibak.3
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/transaction-manager.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/transaction-manager.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/system-jazn-data.xml.ouibak.2 to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/system-jazn-data.xml.ouibak.2
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/database-schemas
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/database-schemas/postgresql.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/database-schemas/postgresql.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/database-schemas/sybase.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/database-schemas/sybase.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/database-schemas/hypersonic.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/database-schemas/hypersonic.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/database-schemas/ms-access.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/database-schemas/ms-access.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/database-schemas/oracle.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/database-schemas/oracle.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/config/database-schemas/ms-sql.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/database-schemas/ms-sql.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/connectors
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/connectors/README.txt to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/connectors/README.txt
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/connectors/datasources
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/connectors/datasources/datasources.rar to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/connectors/datasources/datasources.rar
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/connectors/OracleASjms
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/connectors/OracleASjms/OracleASjms.rar to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/connectors/OracleASjms/OracleASjms.rar
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/META-INF
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/META-INF/MANIFEST.MF to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/META-INF/MANIFEST.MF
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/application-deployments/default/defaultWebApp
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole/application-deployments/default/defaultWebApp/orion-web.xml to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/application-deployments/default/defaultWebApp/orion-web.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.EMDBCConfig copyOC4JDir
    CONFIG: Finished copying OC4J config files
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/jms.xml.emca.util.tmp to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/jms.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/rmi.xml.emca.util.tmp to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/rmi.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/rmi.xml.emca.util.tmp to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/rmi.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/http-web-site.xml.emca.util.tmp to /oracle/TEST/db/tech_st/11.1.0/oc4j/j2ee/OC4J_DBConsole_ERPTEST.BIL.COM_TEST/config/http-web-site.xml
    Aug 29, 2013 11:13:53 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_SENDER_NAME.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_NAME.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.EMAgentConfig updateEmdProps
    CONFIG: Updating file /oracle/TEST/db/tech_st/11.1.0/sysman/config/emd.properties ...
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/sysman/config/emd.properties.emca to /oracle/TEST/db/tech_st/11.1.0/sysman/config/emd.properties
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /oracle/TEST/db/tech_st/11.1.0/sysman/config/emd.properties.emca.util.tmp to /oracle/TEST/db/tech_st/11.1.0/sysman/config/emd.properties
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.EMAgentConfig updateAgentConfigFiles
    CONFIG: Updating file /oracle/TEST/db/tech_st/11.1.0/sysman/config/emd.properties ...
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.EMAgentConfig updateTargets
    CONFIG: value for use102tgt: false
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: host:ERPTEST.BIL.COM
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: oracle_database:TEST
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: oracle_listener:TEST_ERPTEST.BIL.COM
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: host:ERPTEST.BIL.COM
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: oracle_database:TEST
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: oracle_listener:TEST_ERPTEST.BIL.COM
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: host:ERPTEST.BIL.COM
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: oracle_database:TEST
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: oracle_listener:TEST_ERPTEST.BIL.COM
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: host:ERPTEST.BIL.COM
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: oracle_database:TEST
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: oracle_listener:TEST_ERPTEST.BIL.COM
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: host:ERPTEST.BIL.COM
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: oracle_database:TEST
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.target.TargetManager removeAllTargets
    CONFIG: Failed to delete target: oracle_listener:TEST_ERPTEST.BIL.COM
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER_OH.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getListenerHome
    CONFIG: LISTENER_OH not set. Using ORACLE_HOME as listener's home.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER_OH.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getListenerHome
    CONFIG: LISTENER_OH not set. Using ORACLE_HOME as listener's home.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER_OH.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getListenerHome
    CONFIG: LISTENER_OH not set. Using ORACLE_HOME as listener's home.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getLocalListener
    CONFIG: Found listener named: TEST
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.EMAgentConfig updateAgentConfigFiles
    CONFIG: Updating file /oracle/TEST/db/tech_st/11.1.0/sysman/emd/targets.xml ...
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.EMAgentConfig instantiateEMConfigFiles
    CONFIG: Local host name: ERPTEST.BIL.COM
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'DISPLAY' is '', discarding the same
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'TZ' is '', discarding the same
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.util.PlatformInterface getSortedEnvArray
    CONFIG: New Env List: [ADJREOPTS=-Xms128M -Xmx512M, ADJVAPRG=/oracle/TEST/db/tech_st/11.1.0/appsutil/jre/bin/java, ADPERLPRG=/oracle/TEST/db/tech_st/11.1.0/perl/bin/perl, CLASSPATH=/oracle/TEST/db/tech_st/11.1.0/jlib/emca.jar:/oracle/TEST/db/tech_st/11.1.0/jlib/srvm.jar:/oracle/TEST/db/tech_st/11.1.0/jlib/srvmasm.jar:/oracle/TEST/db/tech_st/11.1.0/jlib/emConfigInstall.jar:/oracle/TEST/db/tech_st/11.1.0/jlib/ldapjclnt11.jar:/oracle/TEST/db/tech_st/11.1.0/jlib/ldap.jar:/oracle/TEST/db/tech_st/11.1.0/jlib/share.jar:/oracle/TEST/db/tech_st/11.1.0/jlib/srvmhas.jar:/oracle/TEST/db/tech_st/11.1.0/jlib/netcfg.jar:/oracle/TEST/db/tech_st/11.1.0/jlib/http_client.jar:/oracle/TEST/db/tech_st/11.1.0/lib/http_client.jar:/oracle/TEST/db/tech_st/11.1.0/lib/xmlparserv2.jar:/oracle/TEST/db/tech_st/11.1.0/assistants/jlib/assistantsCommon.jar:/oracle/TEST/db/tech_st/11.1.0/sysman/jlib/emCORE.jar:/oracle/TEST/db/tech_st/11.1.0/sysman/jlib/emagentSDK.jar:/oracle/TEST/db/tech_st/11.1.0/oui/jlib/OraInstaller.jar:/oracle/TEST/db/tech_st/11.1.0/oui/jlib/OraPrereq.jar:/oracle/TEST/db/tech_st/11.1.0/inventory/prereqs/oui/OraPrereqChecks.jar:/oracle/TEST/db/tech_st/11.1.0/oui/jlib/OraPrereqChecks.jar:, CONTEXT_FILE=/oracle/TEST/db/tech_st/11.1.0/appsutil/TEST_erptest.xml, CONTEXT_NAME=TEST_erptest, CVS_RSH=ssh, DYLD_LIBRARY_PATH=/oracle/TEST/db/tech_st/11.1.0/lib:, G_BROKEN_FILENAMES=1, HISTSIZE=1000, HOME=/home/appltest, HOSTNAME=ERPTEST.BIL.COM, INPUTRC=/etc/inputrc, LANG=en_US.UTF-8, LD_LIBRARY_PATH=/oracle/TEST/db/tech_st/11.1.0/jdk/jre/lib/amd64/server:/oracle/TEST/db/tech_st/11.1.0/jdk/jre/lib/amd64:/oracle/TEST/db/tech_st/11.1.0/jdk/jre/../lib/amd64:/oracle/TEST/db/tech_st/11.1.0/lib:/oracle/TEST/db/tech_st/11.1.0/perl/lib:/oracle/TEST/db/tech_st/11.1.0/lib32:/oracle/TEST/db/tech_st/11.1.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/oracle/TEST/db/tech_st/11.1.0/lib:/usr/dt/lib:/oracle/TEST/db/tech_st/11.1.0/ctx/lib, LESSOPEN=|/usr/bin/lesspipe.sh %s, LIBPATH=/oracle/TEST/db/tech_st/11.1.0/lib:/oracle/TEST/db/tech_st/11.1.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/oracle/TEST/db/tech_st/11.1.0/lib:/usr/dt/lib:/oracle/TEST/db/tech_st/11.1.0/ctx/lib, LINK_CNTRL=, LOGNAME=appltest, LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:, MAIL=/var/spool/mail/appltest, NEED_EXIT_CODE=1, NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, NLS_DATE_FORMAT=DD-MON-RR, NLS_LANG=American_America.US7ASCII, NLS_NUMERIC_CHARACTERS=.,, NLS_SORT=binary, ORACLE_HOME=/oracle/TEST/db/tech_st/11.1.0, ORACLE_HOSTNAME=ERPTEST.BIL.COM, ORACLE_SID=TEST, ORA_NLS10=/oracle/TEST/db/tech_st/11.1.0/nls/data/9idata, ORA_TZFILE=/oracle/TEST/db/tech_st/11.1.0/oracore/zoneinfo/timezlrg.dat, PATH=/oracle/TEST/db/tech_st/11.1.0/perl/bin:/oracle/TEST/db/tech_st/11.1.0/bin:/usr/bin:/usr/sbin:/oracle/TEST/db/tech_st/11.1.0/appsutil/jre/bin:/bin:/usr/bin/X11:/usr/local/bin:/oracle/TEST/db/tech_st/11.1.0/perl/bin:/oracle/TEST/db/tech_st/11.1.0/bin:/usr/bin:/usr/sbin:/oracle/TEST/db/tech_st/11.1.0/appsutil/jre/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/appltest/bin:.:., PERL5LIB=/oracle/TEST/db/tech_st/11.1.0/perl/lib/5.8.3:/oracle/TEST/db/tech_st/11.1.0/perl/lib/site_perl/5.8.3:/oracle/TEST/db/tech_st/11.1.0/appsutil/perl, PWD=/home/appltest, SHELL=/bin/bash, SHLIB_PATH=/oracle/TEST/db/tech_st/11.1.0/lib:/oracle/TEST/db/tech_st/11.1.0/lib:/usr/lib:/oracle/TEST/db/tech_st/11.1.0/ctx/lib, SHLVL=2, SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass, TERM=xterm, TNS_ADMIN=/oracle/TEST/db/tech_st/11.1.0/network/admin/TEST_erptest, USER=appltest, XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, _=/oracle/TEST/db/tech_st/11.1.0/jdk/jre/bin/java]
    Aug 29, 2013 11:13:54 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: /oracle/TEST/db/tech_st/11.1.0/bin/emctl deploy dbconsole /oracle/TEST/db/tech_st/11.1.0/ERPTEST.BIL.COM_TEST ERPTEST.BIL.COM:3938 ERPTEST.BIL.COM TEST
    Aug 29, 2013 11:13:55 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 2
    Aug 29, 2013 11:13:55 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Creating shared install...
    Source location: /oracle/TEST/db/tech_st/11.1.0
    Destination (shared install) : /oracle/TEST/db/tech_st/11.1.0/ERPTEST.BIL.COM_TEST
    DeployMode : dbconsole
    Creating directories...
    Aug 29, 2013 11:13:55 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Unable to copy /oracle/TEST/db/tech_st/11.1.0/sysman/config/b64InternetCertificate.txt to /oracle/TEST/db/tech_st/11.1.0/ERPTEST.BIL.COM_TEST/sysman/config/b64InternetCertificate.txt: No such file or directory at /oracle/TEST/db/tech_st/11.1.0/bin/EMDeploy.pm line 262.
    Aug 29, 2013 11:13:55 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /oracle/TEST/db/tech_st/11.1.0/bin/emctl deploy dbconsole /oracle/TEST/db/tech_st/11.1.0/ERPTEST.BIL.COM_TEST ERPTEST.BIL.COM:3938 ERPTEST.BIL.COM TEST
    Aug 29, 2013 11:13:55 AM oracle.sysman.emcp.EMAgentConfig instantiateEMConfigFiles
    CONFIG: Failed to deploy state dirs
    Aug 29, 2013 11:13:55 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error instantiating EM configuration files
    Refer to the log file at /oracle/TEST/db/tech_st/11.1.0/cfgto

  • Errors in emoms.trc

    Hello getting following erros in emoms.trc can anyone help me to find a reason why this heppens?
    Oms 10.2.0.3 on 2003 server
    Agnet 10.2.0.3 on 2003 server
    2007-10-18 11:53:00,056 [XMLLoader0 80000000327.xml] WARN eml.XMLLoader LoadFiles.682 - Marking the file for retry : 80000000327.xml after receiving exceptionjava.sql.SQLException: ORA-14400: inserted partition key does not map to any partition
    2007-10-18 11:53:05,587 [XMLLoader0 80000000327.xml] ERROR eml.XMLLoader markFileAsError.826 - Failed to load 80000000327.xml even after 2 attempts; moving to errors directory. Error:
    java.sql.SQLException: ORA-14400: inserted partition key does not map to any partition
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:304)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:271)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:625)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:181)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:629)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1153)
         at oracle.jdbc.driver.OraclePreparedStatement.sendBatch(OraclePreparedStatement.java:3207)
         at oracle.jdbc.driver.PhysicalConnection.commit(PhysicalConnection.java:1245)
         at oracle.jdbc.OracleConnectionWrapper.commit(OracleConnectionWrapper.java:87)
         at oracle.jdbc.OracleConnectionWrapper.commit(OracleConnectionWrapper.java:87)
         at oracle.sysman.emdrep.dbjava.loader.XMLLoaderContext.handleSubDocument(XMLLoaderContext.java:2272)
         at oracle.sysman.emdrep.dbjava.loader.XMLDocumentSplitter.endElement(XMLDocumentSplitter.java:893)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1257)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:314)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:281)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:196)
         at oracle.sysman.emdrep.dbjava.loader.XMLDocumentSplitter.split(XMLDocumentSplitter.java:466)
         at oracle.sysman.emdrep.dbjava.loader.XMLLoaderContext.loadFromStream(XMLLoaderContext.java:1817)
         at oracle.sysman.emdrep.dbjava.loader.XMLLoader.LoadFile(XMLLoader.java:576)
         at oracle.sysman.emdrep.dbjava.loader.XMLLoader.LoadFiles(XMLLoader.java:667)
         at oracle.sysman.emdrep.dbjava.loader.XMLLoader.run(XMLLoader.java:1314)
         at java.lang.Thread.run(Thread.java:534)

    This may occur if the Repository has not been reorganized and if there are many truncated
    partitions in the Grid Management Repository. SolutionTo fix this issue, please execute the following steps:
    1. Stop the all the Management Agents until the problem is solved.
    $ emctl stop agent
    This step is recommended as this will stop the uploading of new files to the directories
    $ORACLE_HOME/sysman/recv and $ORACLE_HOME/sysman/recv/errors.
    A growing backlog of xml files in the OMS $ORACLE_HOME/sysman/recv sub-directory means a longer time for the OMS to insert the outstanding xml files in the repository. And as long as the upload issue is not fixed, the xml files will continue being moved to the $ORACLE_HOME/sysman/recv/errors sub-directory. Hence even if collected, data moved to the errors sub-directory will never be inserted into the repository, thus making the data collection useless.
    2. Stop all the Management Servers and let the Management Repository Database up and running
    $ emctl stop oms
    3. Connect to the database hosting the Central Management Repository with the SYSMAN account
    4. Execute the following SQL statement
    SQL > exec emd_maintenance.analyze_emd_schema('SYSMAN')
    SQL> exec emd_maintenance.partition_maintenance
    Warning: depending of the amount of work to be done, exec emd_maintenance.partition_maintenance can take a while,
    up to more than one hour. DO NOT cancel this procedure.
    This procedure stops and restartds SYSMAN dbms_jobs. If it is cancelled or does not complete successfully
    for any reason, you can hit the bug:
    Bug 5231347 Running Emd_Maintenance.Partition_Maintenance Deletes Sysman Jobs
    In that case, rerun exec emd_maintenance.partition_maintenance should fix the issue.
    If you cannot run exec emd_maintenance.partition_maintenance and want to fix the dbms_job issue, check
    Note 370695.1 Running EMD_MAINTENANCE.PARTITION_MAINTENANCE removes SYSMAN dbms_jobs
    5. Restart the Management Servers
    6. Restart the Management Agents
    7. Verify that the issue is fixed.
    kind regards
    Terry

  • OEM Console Not Creating

    Hi,
    While creating Oracle Enterprise manager in 10g R2 . I'm facing the following error message.
    Before creating OEM i removed SYSMAN and MGMT_VIEW user. But now I'm facing the below error message.
    Advice me
    Check if repos user already exists.
    SP2-0310: unable to open file "&EM_SQL_ROOT/core/latest/admin/admin_check_repos_user.sql"
    Create SYSMAN user.
    SP2-0310: unable to open file "&EM_SQL_ROOT/core/latest/admin/admin_create_repos_user.sql"
    BEGIN dbms_registry.loading('EM', 'Oracle Enterprise Manager', null, '&EM_REPOS_USER');
    END;
    ERROR at line 1:
    ORA-39706: schema '&EM_REPOS_USER' not found
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REGISTRY", line 71
    ORA-06512: at "SYS.DBMS_REGISTRY", line 406
    ORA-06512: at line 1
    Babu B

    Can you post the errors you get when you use emca?Before create OEM Console, I'm used the following cmd's
    set oracle_sid=dbname
    emca -deconfig dbcontrol db -repos drop
    emca -config dbcontrol db -repos create
    And, Please check out my log files and let me know your comments.
    File Name : emca_2007-11-29_07-27-23-PM
    Nov 29, 2007 7:27:23 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-config' set to true
    Nov 29, 2007 7:27:23 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'UPDATE_EMAIL' set to true
    Nov 29, 2007 7:27:23 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'dbcontrol' set to true
    Nov 29, 2007 7:27:23 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Nov 29, 2007 7:27:23 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'create' set to true
    Nov 29, 2007 7:27:23 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ORACLE_HOME value: D:\oracle\product\10.2.0\db_1
    Nov 29, 2007 7:27:23 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Nov 29, 2007 7:27:23 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EM_HOME value: D:\oracle\product\10.2.0\db_1
    Nov 29, 2007 7:27:25 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SID value: devdb
    Nov 29, 2007 7:27:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Nov 29, 2007 7:27:25 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: Cluster.isCluster: false. Skip call to getLocalNode
    Nov 29, 2007 7:27:25 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Nov 29, 2007 7:27:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Nov 29, 2007 7:27:25 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: devdb Host: devdbserver.samiindia.com Node: null OH: D:\oracle\product\10.2.0\db_1 isDBC: false
    Nov 29, 2007 7:27:25 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: devdb Host: devdbserver.samiindia.com Node: null OH: D:\oracle\product\10.2.0\db_1 agentHome: null isCentral: false
    Nov 29, 2007 7:27:25 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: devdb Host: devdbserver.samiindia.com Node: null OH: D:\oracle\product\10.2.0\db_1 agentHome: null isCentral: false
    Nov 29, 2007 7:27:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Nov 29, 2007 7:27:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user:
    Nov 29, 2007 7:27:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:26 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Nov 29, 2007 7:27:26 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Nov 29, 2007 7:27:30 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1521
    Nov 29, 2007 7:27:31 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Nov 29, 2007 7:27:31 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: SYS
    Nov 29, 2007 7:27:31 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:33 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: DBSNMP
    Nov 29, 2007 7:27:33 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:36 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EMAIL_ADDRESS value:
    Nov 29, 2007 7:27:36 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: MAIL_SERVER_NAME value:
    Nov 29, 2007 7:27:36 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Nov 29, 2007 7:27:36 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value:
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value: yes
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LOG_FILE.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: SYS
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: DEVDB
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at D:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\DEVDB\emca_2007-11-29_07-27-23-PM.log.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'CHECK_CONFIG' set to true
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: SYS
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: DBSNMP
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: SYS
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: SYS
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: DEVDB
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_DOMAIN value: samiindia
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: DEVDB
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: DEVDB.samiindia
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBID.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.DatabaseChecks getDbid
    CONFIG: No dbid available. Will query db to extract it.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: SYS
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBID value: 4149483541
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: SYS
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: DEVDB
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_DOMAIN value: samiindia
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: DEVDB
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: DEVDB.samiindia
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter EMAIL_ADDRESS.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_NAME.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: SYS
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.EMDBPreConfig invoke
    CONFIG: Passed repository configuration check
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter GLOBAL_DB_UNIQUE_NAME.
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName
    CONFIG: No Global database unique name available. Will try to retrieve it from DB itself
    Nov 29, 2007 7:27:38 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: SYS
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_DOMAIN value: samiindia
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: DEVDB.samiindia
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file D:\oracle\product\10.2.0\db_1\sysman\config\emd.properties to D:\oracle\product\10.2.0\db_1\sysman\config\emd.properties.emca.tmp
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file D:\oracle\product\10.2.0\db_1\sysman\config\emd.properties has been copied to D:\oracle\product\10.2.0\db_1\sysman\config\emd.properties.emca.tmp
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file D:\oracle\product\10.2.0\db_1\sysman\config\emoms.properties to D:\oracle\product\10.2.0\db_1\sysman\config\emoms.properties.emca.tmp
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file D:\oracle\product\10.2.0\db_1\sysman\config\emoms.properties has been copied to D:\oracle\product\10.2.0\db_1\sysman\config\emoms.properties.emca.tmp
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file D:\oracle\product\10.2.0\db_1\sysman\emd\targets.xml to D:\oracle\product\10.2.0\db_1\sysman\emd\targets.xml.emca.tmp
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file D:\oracle\product\10.2.0\db_1\sysman\emd\targets.xml has been copied to D:\oracle\product\10.2.0\db_1\sysman\emd\targets.xml.emca.tmp
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_RECONFIG' set to false
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: devdb Host: devdbserver.samiindia.com Node: null OH: D:\oracle\product\10.2.0\db_1 agentHome: null isCentral: false
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: devdb Host: devdbserver.samiindia.com Node: null OH: D:\oracle\product\10.2.0\db_1 isDBC: false
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_CONFIGURED' set to false
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_DBCONTROL_CONFIGURED' set to false
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: devdb Host: devdbserver.samiindia.com Node: null OH: D:\oracle\product\10.2.0\db_1 isDBC: false
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter PORTS_FILE.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_devdb.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_devdb.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_devdb.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_devdb.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to D:\oracle\product\10.2.0\db_1\oui
    Nov 29, 2007 7:27:39 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to D:\oracle\product\10.2.0\db_1\oui
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Homes to scan for used ports: [D:\oracle\product\10.2.0\db_1]
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME D:\oracle\product\10.2.0\db_1
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking JMS port: null from D:\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking RMI port: null from D:\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking HTTP port: null from D:\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.PortManager getAgentPort
    CONFIG: Cannot parse EMD_URL correctly. No port identified
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: null from D:\oracle\product\10.2.0\db_1\sysman\config\emd.properties
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Cannnot parse EMD_URL correctly. No port identified
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.FileUtil getProperties
    CONFIG: Error reading file D:\oracle\product\10.2.0\db_1\install\staticports.ini
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.PortManager getFreePorts
    CONFIG: D:\oracle\product\10.2.0\db_1:devdbserver.samiindia.com:null:devdb:{}:null:{DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_devdb.
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: AGENT_PORT_devdb value: 3938
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_devdb.
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBCONTROL_HTTP_PORT_devdb value: 1158
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_devdb.
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: JMS_PORT_devdb value: 5540
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_devdb.
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: RMI_PORT_devdb value: 5520
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.EMDBPreConfig getFreePorts
    CONFIG: Ports assigned for SID: devdb : {DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: devdb, oracleHome: D:\oracle\product\10.2.0\db_1, and user: SYS
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: Spooling to D:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\DEVDB\emca_repos_create_2007-11-29_07-27-40-PM.log
    Nov 29, 2007 7:27:40 PM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Nov 29, 2007 7:27:41 PM oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: ORA-39706: schema '&EM_REPOS_USER' not found
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REGISTRY", line 71
    ORA-06512: at "SYS.DBMS_REGISTRY", line 406
    ORA-06512: at line 1
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-39706: schema '&EM_REPOS_USER' not found
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REGISTRY", line 71
    ORA-06512: at "SYS.DBMS_REGISTRY", line 406
    ORA-06512: at line 1
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1467)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeScript(SQLEngine.java:841)
         at oracle.sysman.assistants.util.sqlEngine.SQLPlusEngine.executeScript(SQLPlusEngine.java:265)
         at oracle.sysman.assistants.util.sqlEngine.SQLPlusEngine.executeScript(SQLPlusEngine.java:306)
         at oracle.sysman.emcp.EMReposConfig.createRepository(EMReposConfig.java:389)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:191)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:133)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:142)
         at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:485)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1141)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:469)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:418)
    Nov 29, 2007 7:27:41 PM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error creating the repository
    Nov 29, 2007 7:27:41 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at D:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\DEVDB\emca_repos_create_<date>.log for more details.
    Nov 29, 2007 7:27:41 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error creating the repository
    Refer to the log file at D:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\DEVDB\emca_2007-11-29_07-27-23-PM.log for more details.
    Nov 29, 2007 7:27:41 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:203)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:133)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:142)
         at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:485)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1141)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:469)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:418)
    File Name : emca_repos_create_2007-11-29_07-27-40-PM
    Check if repos user already exists.
    SP2-0310: unable to open file "&EM_SQL_ROOT/core/latest/admin/admin_check_repos_user.sql"
    Create SYSMAN user.
    SP2-0310: unable to open file "&EM_SQL_ROOT/core/latest/admin/admin_create_repos_user.sql"
    BEGIN dbms_registry.loading('EM', 'Oracle Enterprise Manager', null, '&EM_REPOS_USER'); END;
    ERROR at line 1:
    ORA-39706: schema '&EM_REPOS_USER' not found
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REGISTRY", line 71
    ORA-06512: at "SYS.DBMS_REGISTRY", line 406
    ORA-06512: at line 1
    Babu B

  • How do you change the email address for sysman in DBConsole?

    Hi,
    EM Alerts were originally setup to send to my email address. A new dba started and changed everything you can within dbconsole to have the alerts come to him. He is not getting any alerts, I am still getting them.
    The alerts are coming from sysman. There doesn't seem to be away to see what email address is set for sysman and change the email address. 11GR1
    sysman is grey'd out
    This is the body of the email from EM Alert:
    And what does this message mean?
    Metric=Count of targets not uploading data
    Metric Value=3
    Timestamp=Jan 21, 2011 12:21:35 AM EST
    Severity=Critical
    Message=Count of targets not uploading exceeded the critical threshold (0). Current value: 3
    Notification Rule Name=Agent Upload Problems
    Notification Rule Owner=SYSMAN
    Notification Count=1

    This is not where the email address was set that is sending me messages:You can add/change email address as
    Go to Setup and then Notification Methods here you can edit/add is where you can add who the email is coming from
    Setup ->Notification  methods
    Outgoing mail server
    Username:
    password:
    confirm password:
    Identify Sender as:
    Sender's E-mail Address:
    Repeat notifications:
    Scripts and SNMP Traps
    Nor here:
    Setup -> Administrators
    Sys - Super Administrator
    Syman - Repository Owner
    System - Super Administrator You need to set up your notification schedule in order to receive e-mail notifications for alerts. For each day in the schedule, specify the e-mail addresses that should be used to send you e-mail notifications.
    I can view/edit, subscribe to Rules Delete and Create for sys and system under Setup->Administrators. These options are greyed out for sysman.
    +The following area also does not change who the emails are sent to
    .+ Notification emails are not going to the email address set here. They are
    still going to the address previously set, My address.
    preferences -> General
    Password
    E-mail Addresses
    Notification Schedule: - This is where the email address was hiding
    You need to set up your notification schedule in order to receive e-mail notifications for alerts. For each day in the schedule, specify the e-mail addresses that should be used to send you e-mail notifications.
    This is where my email address was hiding:
    Edit Schedule Definitions: E-mail Addresses - did this for sysman Was not sufficient to change it for system or sys. Changed it, maybe the messages will stop coming to me now.
    There were two email addresses set here. They were only going to the first one listed. Mine. I removed it,maybe the notifications will stop coming to me and I can stop monitoring for free for the guy that is getting paid to watch the system.
    Edited by: jarymo on Jan 22, 2011 1:54 PM

  • What are files in $AGENT_HOME/sysman/emd/state/statemgmt/oracle_home

    Greetings.
    I have found my OEM 12c, 12.1.0.1 reporting on some targets which don't exist ad some which are reported incorrectly. Some poking around on a particular host for which this behavior is exhibited (this host is a member of a two node cluster) lead me to the directory $AGENT_HOME/sysman/emd/state/statemgmt/oracle_home on that host. In that directory I find the files -
    agent12c1_8_hammer
    cmdevel.ucdavis.edu_cmdevel1_oracle_database_home
    cmupg.ucdavis.edu_cmupg1_oracle_database_home
    hammersteele_cluster_home
    LISTENER_SCAN10_hammersteele_oracle_listener_home
    LISTENER_SCAN2_hammersteele_oracle_listener_home
    cmupg is a database which does not exist, It may have existed at one point but if it did was removed some time ago.
    LISTENER_SCAN10 is a non-existent scan listener.
    ./emctl config agent listtargets lists both of those tqargets -
    mytest1:product/agent12g/agent_inst/bin->./emctl config agent listtargets
    Oracle Enterprise Manager 12c Cloud Control 12.1.0.1.0
    Copyright (c) 1996, 2012 Oracle Corporation. All rights reserved.
    [hammer.ucdavis.edu, host]
    [hammer.ucdavis.edu:3872, oracle_emd]
    [LISTENER_SCAN10_hammersteele_oracle_listener_home, oracle_home]
    [LISTENER_SCAN2_hammersteele_oracle_listener_home, oracle_home]
    [cmdevel.ucdavis.edu_cmdevel1_oracle_database_home, oracle_home]
    [cmupg.ucdavis.edu_cmupg1_oracle_database_home, oracle_home]
    [LISTENER_SCAN3_hammersteele, oracle_listener]
    [LISTENER_hammer.ucdavis.edu, oracle_listener]
    [+ASM1_hammer.ucdavis.edu, osm_instance]
    [agent12c1_8_hammer, oracle_home]
    [LISTENER_SCAN2_hammersteele, oracle_listener]
    [has_hammer.ucdavis.edu, has]
    (some data deleted by me)
    My question is, can anyone explain to me where those files come from, how the OEM uses them and should I clean that up? I did see SCAN_LISTENER10 reported by the console but I manually deleted it form the console.
    Another interesting observation is that there are three SCAN_LISTENERS on this cluster, 1, 2 & 3. The console reports only LISTENER_SCAN2 as being up, the others are reported as being down. COuld this have some bearing on it. SCAN_LISTENER1 is running on the other node and the file LISTENER_SCAN1_hammersteele_oracle_listener_home exists in the analocous directory on the other cluster.
    I'm puzzled. If anyone can help me out I would be most appreciative.
    Thank you.
    Bill Wagman

    Courtney,
    That makes sense and in fact the 11.2.0.2 installation was upgraded to 11.2.0.3 and 11.2.0.2 was not uninstalled so these entries from the targets.xml make sense -
    <HOME NAME="Ora11g_gridinfrahome1" LOC="/usr/local/oraGrid/product/11.2.0.2-grid" TYPE="O" IDX="1">
    <NODE_LIST>
    <NODE NAME="hammer"/>
    <NODE NAME="steele"/>
    </NODE_LIST>
    </HOME>
    <HOME NAME="OraDb11g_home1" LOC="/usr/local/oracle/product/11.2.0.2/dbhome_1" TYPE="O" IDX="2">
    <NODE_LIST>
    <NODE NAME="hammer"/>
    <NODE NAME="steele"/>
    </NODE_LIST>
    Now, on to the next question. In the statemgmt/oracle_home directory I see these files (among others) -
    cmupg.ucdavis.edu_cmupg1_oracle_database_home
    LISTENER_SCAN10_hammersteele_oracle_listener_home
    cmupg is a database which no longer exists and LISTENER_SCAN10 no longer exists. Where do those files come from? The database cmdevel does exist and I see the file -
    cmdevel.ucdavis.edu_cmdevel1_oracle_database_home
    there are three other databases on this cluster, why are there not files for these other databases? I'm very confused and appreciate your help.
    Thank you.
    Bill Wagman

  • Can't remove proxy

    I'm having trouble removing the proxy from the patching setup. I'm using GC 10g R3. Every time I try to set it back to direct Internet connection, it gives me a Error: "Proxy Test resulted in Exception" when I click on the apply button.
    I need to remove the proxy server from the current configuration because our proxy server doesn't allow SSL traffic over port 502 and now I'm having problems setting up DB targets.
    I also don't want to exception every host in my target list.
    Any suggestions would be appreciated. Thanks.
    -Tony

    I guess I have to remove is manually. I found this Note:336589.1. It explains these steps:
    On the OMS server:
    1. Stop the Management Service:
    $OH/opmn/bin/opmnctl stopall
    2. Edit:
    $OH/sysman/config/emoms.properties
    3. Remove the following parameter:
    proxyHost=
    4. Restart the Management Service:
    $OH/opmn/bin/opmnctl startall

  • Which schemas can be removed?

    I'm trying to recover some disk space on a machine that has an Oracle DB that is used by a single application. I believe I can do this by eliminating unecessary/unused schemas. There is a single schema devoted to the application so I'm not going to be messing with that but I would like to remove any schemas not needed by Oracle to handle our one active schema.
    I know some of the schemas, such as SCOTT and SMITH are provided by Oracle and are used in tutorials, most of the others are a mystery. But even with the tutorial schemas, I don't know if eliminating these schemas will cause problems.
    Below is the list of schemas from this DB., what can be eliminated?
    Thanks for any help or advice,
    -=beeky
    ---------------------------- the list of schemas ----------------------------------------------------
    AMY
    ANONYMOUS
    BI
    CTXSYS
    DIP
    DMSYS
    EXFSYS
    HR
    IX
    JONES
    MDDATA
    MDSYS
    MGMT_VIEW
    NODC
    OE
    OLAPSYS
    ORDPLUGINS
    ORDSYS
    OUTLN
    PM
    PUBLIC
    SCOTT
    SH
    SI_INFORMTN_SCHDMA
    SMITH
    SYS
    SYSMAN
    SYSTEM
    UKDB
    WKPROXY
    WKSYS
    WKSYS
    XDB

    Hiya Beeky,
    I'm with the others on this. Based on your last reply I would add a simple point. If you are trying to learn about Oracle you may want to retain the example schemas that come with the installation (SCOTT etc.) . They might be useful especially when following tutorials etc.
    Bear in mind that these sample schemas don't use up a huge amount of space anyway, at least in todays terms. I don't recall exactly but I think we are talking about hundreds of Mbytes at most and consider your average laptop nowadays comes with a standard 2 Gbyte.
    As others have pointed out , have a look for things that are using up large amounts of space. Also you can try a query something like SELECT SUM (BYTES) /1024/1024, SEGMENT_NAME FROM DBA_SEGMENTS ORDER BY 1 DESC; to give you an idea of what segments (and thus objects and their owners/schemas) are using up most space.
    Best Regards

  • Distributed System Manager SysMan ACL.acl

    I've managed to lock myself out of the Distributed System Manager. 
    The help file http://zone.ni.com/reference/en-XX/help/372572A-01/sysman/ni_acl_db/ says to reset security settings remove the SysMan ACL.acl file from the default LabVIEW Data directory.  I cant find it
    I've completed a search on my hard drive and found no file with an .acl extension
     I was logging in and out trying to get the Shared Variable Engine operating correctly and for some reason I decided it would be a good idea to add a new host.  A message along the lines of "Changing this setting will no longer allow (Nobody) to log in"  It was a Friday afternoon and I presumed that as it was trying to log in with the User (Nobody), this was why my Shared Variable Engine would not connect to my OPC Server
    Now the host name I changed it to does not work.  It says the user is invalid.
    Any ideas how to reset the host settings so I can at least get in?
    Alan

    Hi Tony
    Thanks for your help
    See attached I went to Actions>ConfigureSecurity>then selected add New User/Host
    Then checked configure new host and typed in the username of the PC.
    Not the cleverest thing Ive done recently
    Alan
    Attachments:
    Doc6.doc ‏44 KB

  • Error in removing EM

    hi,
    i recently upgraded my databse form 9.2.0.5 to 10.2.0.3 , when i tried to install EM on the new databse , i had a power problem and lost connection to server, after that i am trying to remove Em with
    RepManager -connect devtv01 -action drop
    it gives the error : Could not connect to SYS/TEST: ORA-01031: insufficient privileges (DBD ERROR: OCISessionBegin)
    any suggestions

    hi
    i was able to remove EM as given in the doc but after creating repository
    it gives this error while running this command emca -config dbcontrol db
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
    at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:572)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:184)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:153)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:155)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:485)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1141)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:469)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:418)
    i have upgraded datbase from 9.2.0.5 to 10.2.0.3
    but version of EM i am installing is 10.2.0.1, can there be a version problem

  • Install Failure on oracle.sysman.emcp.agent.AgentPlugIn

    I am installing OEM for the second time. I believe I cleaned up the first installation. However, it runs through the installation and fails on the command:
    oracle.sysman.emcp.agent.AgentPlugIn -config
    I went to Metalink and made the recommended changes to the Listener file. These did not work.
    Anyone have any thoughts. Boy this product is a bear!!!
    Thanks,
    John

    I am installing the product on an HP server that has three databases.
    It is failing on the OMS Configuration Step.
    I watched the installActions log. Reviewing this log it appears to fail on the DCM Repository Backup Assistant. Here are some excepts:
    End Processing configuration tool Enterprise manager Website Configuration Assistant.
    Start Processing configuration tool DCM Repository Bacup Assistant
    Number of file(s) copied is 0
    End Processing configuration tool DCM Repository Backup Assistant
    INFO: The .. script contains all commands that failed...
    I looked in the cfgfw directory. The last three log files are:
    oracle.sysman.top.oms.....log
    Cfmlogger....log
    OuiConfigVariables...log
    The latter two did not appear to have any errors. However the first did. Here is the file.
    Thanks,
    I appreciate the help.
    John
    INFO: oracle.sysman.top.oms:About to execute plug-in EM Technology Stack Upgrade
    INFO: oracle.sysman.top.oms:The plug-in EM Technology Stack Upgrade is running
    INFO: oracle.sysman.top.oms:Launching CmdExec
    INFO: oracle.sysman.top.oms:ExitCode=0
    INFO: oracle.sysman.top.oms:The plug-in EM Technology Stack Upgrade executed as attached=true in separate process with exitcode=0
    INFO: oracle.sysman.top.oms:The plug-in EM Technology Stack Upgrade has successfully been performed
    INFO: oracle.sysman.top.oms:About to execute plug-in OMS Configuration
    INFO: oracle.sysman.top.oms:The plug-in OMS Configuration is running
    INFO: oracle.sysman.top.oms:Internal PlugIn Class: oracle.sysman.emcp.oms.OmsPlugIn
    INFO: oracle.sysman.top.oms:Classpath = /u01/app/oracle/OracleHomes/oms10g/sysman/jlib/omsPlug.jar:/u01/app/oracle/OracleHomes/oms10g/jlib/emConfigInstall.jar:/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emCORE.jar:/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emagentSDK.jar:/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/log4j-core.jar:/u01/app/oracle/OracleHomes/oms10g/jdbc/lib/classes12.jar
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:EmcpPlug:CfmLogger array of log directories 0:dir entry=/u01/app/oracle/OracleHomes/oms10g/cfgtoollogs/cfgfw
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:EmcpPlug:CfmLogger array of log directories=1:using first entry=/u01/app/oracle/OracleHomes/oms10g/cfgtoollogs/cfgfw
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:EmcpPlug:Invoked with Installation_Type=NOSEED, flags and conditions are set for Windows=false
    INFO: oracle.sysman.top.oms:EmcpPlug:invoke:Starting EmcpPlug invoke method on an aggregate=oracle.sysman.top.oms for Action=configuration in step=2:microstep=0
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:OmsPlugIn:perform:omsHome=/u01/app/oracle/OracleHomes/oms10g:ORACLE_HOME_GLOBAL=/u01/app/oracle/OracleHomes/oms10g:Flags:NEED_OMS=true:omsService=true:startSevice=false:stopService=false
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:EmcpPlug:getParamStringDecrypted:Decrypting parameter=s_encrReposPwd
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:getConnection:Connecting as user=SYSMAN
    WARNING: oracle.sysman.top.oms:getConnection::Connection refused:db1p:1521:des9:Exception=ORA-01017: invalid username/password; logon denied
    INFO: oracle.sysman.top.oms:Failed to connect to Database for s_reposUser=sysman, s_reposPwd=******, connectString=db1p:1521:des9. ConnectException=ORA-01017: invalid username/password; logon denied
    Will retry as SYS user...
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:EmcpPlug:getParamStringDecrypted:Decrypting parameter=s_encrSysPwd
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:getConnection:Connecting as user SYS for internal logon as SYSDBA
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:Result Set from Database for nodes and sids is processed for dbUser=SYS, s_reposPwd=******, connectString=db1p:1521:des9
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:fixNodeNames:The repository host name specified contains no domain extention=db1p:Fixin is not done!
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:mkDescriptor:Connect Descriptor created=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=db1p)(PORT=1521)))(CONNECT_DATA=(SID=des9)))
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:OmsPlugIn:perform:Performing Action=configuration with options = Specified: -configureOms in OracleHome=/u01/app/oracle/OracleHomes/oms10g
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:Operation Stopping OPMN Processes is in progress.
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Executing Command=/u01/app/oracle/OracleHomes/oms10g/opmn/bin/opmnctl stopall
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:drain:Drainig running process...
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:/u01/app/oracle/OracleHomes/oms10g/opmn/bin/opmnctl stopall have completed with exitCode=0
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    opmnctl: stopping opmn and all managed processes...
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 0 have been completed with status=true
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:Operation EM Deploying is in progress.
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Executing Command=/u01/app/oracle/OracleHomes/oms10g/bin/EMDeploy
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:drain:Drainig running process...
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:/u01/app/oracle/OracleHomes/oms10g/bin/EMDeploy have completed with exitCode=0
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    Environment :
    ORACLE HOME = /u01/app/oracle/OracleHomes/oms10g
    STAGE DIR = /u01/app/oracle/OracleHomes/oms10g/j2ee/OC4J_EM/applications/em
    TEMP DIR = /oracle/oratmp
    PSEP = :
    Info : /u01/app/oracle/OracleHomes/oms10g/lib/ojsp.jar does not exist
    Info : /u01/app/oracle/OracleHomes/oms10g/lib/ojsputil.jar does not exist
    Info : /u01/app/oracle/OracleHomes/oms10g/syndication/lib/syndserver.jar does not exist
    Info : /u01/app/oracle/OracleHomes/oms10g/rdbms/jlib/xsu12.jar does not exist
    Info : /u01/app/oracle/OracleHomes/oms10g/network/jlib/netcfg4em12.jar does not exist
    Info : /u01/app/oracle/OracleHomes/oms10g/encryption/jlib/ojmisc.jar does not exist
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/lib/ojsp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/webservices/lib/wsdl.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/lib/dsv2.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/lib/classgen.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/rdbms/jlib/jmscommon.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/lib/ojsputil.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/lib/oraclexsql.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/jlib/providerutil.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/syndication/lib/syndserver.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/lib/xschema.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/rdbms/jlib/xsu12.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/jlib/regexp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/oui/jlib/OraInstaller.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/network/jlib/netcfg4em12.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/encryption/jlib/ojmisc.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/jlib/orai18n.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/portal/jlib/pdkjava.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/portal/jlib/ptlshare.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/jlib/share.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/jlib/uix2.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/jlib/ohw.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/jlib/commons-el.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/jlib/jsp-el-api.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/jlib/oracle-el.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emCORE.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emCfg.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emPid.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emProvisioningAll.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emSDKsamples.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emcliload.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emclidownload.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emcoreALL.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emcoreAgent.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emcoreTest.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emcore_emjsp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emcore_emjspf_classes.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emdloader.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emagentSDK.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emagentTest.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/iview.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/jviewsall.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/qsma.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/svgdom.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/omsPlug.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/lib/xml.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/lib/xmlmesg.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/jcb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/log4j-core.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/jlib/emConfigInstall.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emDB.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emdb_emjsp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/ewm-1_1.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emas.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emasSDK.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emas_emdjsp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emas_emjsp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emd_java.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/webapps/emd/WEB-INF/lib/iview.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emcs_emdjsp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emcs_emjsp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emcs.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emcsSDK.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/empp_emjsp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/pafALL.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/pafJAXB.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_workspaces_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/um.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/ultrasearch_gc.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/esldap.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/escommon.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/esemres.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/ocscommon.jar"/> to orion-web.xml
    adding1 [main] DEBUG emSDK.util.help - processing config file locale : enUS
    136 [main] DEBUG emSDK.util.help - processing config file locale : _de
    250 [main] DEBUG emSDK.util.help - processing config file locale : _es
    351 [main] DEBUG emSDK.util.help - processing config file locale : _fr
    434 [main] DEBUG emSDK.util.help - processing config file locale : _ja
    883 [main] DEBUG emSDK.util.help - processing config file locale : _ko
    924 [main] DEBUG emSDK.util.help - processing config file locale : ptBR
    949 [main] DEBUG emSDK.util.help - processing config file locale : zhCN
    978 [main] DEBUG emSDK.util.help - processing config file locale : zhTW
    1015 [main] DEBUG emSDK.util.help - processing config file locale : _it
    Reading ini file - '/u01/app/oracle/OracleHomes/oms10g/j2ee/deploy.ini'
    Adding web-app 'em.war' for app 'em'.
    OC4J instance 'OC4J_EM': Adding Environment variable 'SHLIB_PATH' with value '/u01/app/oracle/OracleHomes/oms10g/lib32:/u01/app/oracle/OracleHomes/oms10g/network/lib32'
    OC4J instance 'OC4J_EM': Adding Environment variable 'LD_LIBRARY_PATH' with value '/u01/app/oracle/OracleHomes/oms10g/lib32:/u01/app/oracle/OracleHomes/oms10g/network/lib32'
    OC4J instance 'OC4J_EM': Adding Environment variable 'ORACLE_HOME' with value '/u01/app/oracle/OracleHomes/oms10g'
    OC4J instance 'OC4J_EM': Adding java command line option '-Xmx512M -XX:MaxPermSize=256m -DORACLE_HOME=/u01/app/oracle/OracleHomes/oms10g -Dajp.keepalive=true'
    Adding web-app 'RlmUIX.war' for app 'rlmgr'.
    Adding web-app 'EMAgentPush.war' for app 'EMAgentPush'.
    Initializing DCM...done.
    Creating OC4J instance 'OC4J_EMPROV' (protected)...done.
    Creating OC4J instance 'OC4J_EM' (protected)...done.
    Starting OC4J instance 'OC4J_EMPROV'...done.
    Redeploying application 'EMAgentPush' to OC4J instance 'OC4J_EMPROV'.
    Notification ==> Application Deployer for EMAgentPush STARTS [ 2006-09-19T08:07:09.958CDT ]
    Notification ==> Undeploy previous deployment
    Notification ==> Removing files for app file:/u01/app/oracle/OracleHomes/oms10g/j2ee/OC4J_EMPROV/applications/EMAgentPush.ear
    Notification ==> Copy the archive to /u01/app/oracle/OracleHomes/oms10g/j2ee/OC4J_EMPROV/applications/EMAgentPush.ear
    Notification ==> Unpack EMAgentPush.ear begins...
    Notification ==> Unpack EMAgentPush.ear ends...
    Notification ==> Initialize EMAgentPush.ear begins...
    Notification ==> Initialize EMAgentPush.ear ends...
    Notification ==> Initialize EMAgentPush begins...
    Notification ==> Initialize EMAgentPush ends...
    Notification ==> Application Deployer for EMAgentPush COMPLETES [ 2006-09-19T08:07:25.626CDT ]
    Starting OC4J instance 'OC4J_EM'...done.
    Redeploying application 'rlmgr' to OC4J instance 'OC4J_EM'.
    Notification ==> Application Deployer for rlmgr STARTS [ 2006-09-19T08:07:39.478CDT ]
    Notification ==> Undeploy previous deployment
    Notification ==> Removing files for app file:/u01/app/oracle/OracleHomes/oms10g/j2ee/OC4J_EM/applications/rlmgr.ear
    Notification ==> Copy the archive to /u01/app/oracle/OracleHomes/oms10g/j2ee/OC4J_EM/applications/rlmgr.ear
    Notification ==> Unpack rlmgr.ear begins...
    Notification ==> Unpack rlmgr.ear ends...
    Notification ==> Initialize rlmgr.ear begins...
    Notification ==> Initialize rlmgr.ear ends...
    Notification ==> Initialize RlmUIX begins...
    Notification ==> Initialize RlmUIX ends...
    Notification ==> Application Deployer for rlmgr COMPLETES [ 2006-09-19T08:07:42.836CDT ]
    Redeploying application 'em' to OC4J instance 'OC4J_EM'.
    Notification ==> Application Deployer for em STARTS [ 2006-09-19T08:07:42.946CDT ]
    Notification ==> Undeploy previous deployment
    Notification ==> Removing files for app file:/u01/app/oracle/OracleHomes/oms10g/j2ee/OC4J_EM/applications/em.ear
    Notification ==> Copy the archive to /u01/app/oracle/OracleHomes/oms10g/j2ee/OC4J_EM/applications/em.ear
    Notification ==> Unpack em.ear begins...
    Notification ==> Unpack em.ear ends...
    Notification ==> Initialize em.ear begins...
    Notification ==> Initialize em.ear ends...
    Notification ==> Initialize em begins...
    Notification ==> Initialize em ends...
    Notification ==> Application Deployer for em COMPLETES [ 2006-09-19T08:08:00.586CDT ]
    Calling updateConfig to notify DCM of new deployments...done.
    Adding dependent libraries for application 'EMAgentPush'...done.
    Adding OC4J mount points for application 'EMAgentPush'...done.
    Adding OC4J mount points for application 'rlmgr'...done.
    Adding OC4J mount points for application 'em'...done.
    Calling SMI to save changes.
    SMISession.saveChanges succeeded.
    Binding web app 'EMAgentPush' to default-web-site for application 'EMAgentPush' in OC4J instance 'OC4J_EMPROV'
    Web app 'EMAgentPush' bound successfully.
    Binding web app 'RlmUIX' to default-web-site for application 'rlmgr' in OC4J instance 'OC4J_EM'
    Web app 'RlmUIX' bound successfully.
    Binding web app 'em' to default-web-site for application 'em' in OC4J instance 'OC4J_EM'
    Web app 'em' bound successfully.
    Calling updateConfig to notify DCM of new web-bindings...done.
    Adding application 'EMAgentPush' to the DCM repository...done.
    Application 'EMAgentPush' deployed successfully.
    Stopping OC4J instance 'OC4J_EMPROV'...done.
    Adding application 'rlmgr' to the DCM repository...done.
    Application 'rlmgr' deployed successfully.
    Adding application 'em' to the DCM repository...done.
    Application 'em' deployed successfully.
    Stopping OC4J instance 'OC4J_EM'...done.
    Calling SMI to retry init of failed plugins...done.
    Terminating DCM...done.
    Copying /u01/app/oracle/OracleHomes/oms10g/j2ee/deploy.ini to /u01/app/oracle/OracleHomes/oms10g/j2ee/deploy.ini.1158671429174.bak.
    Writing any undeployed entries back to /u01/app/oracle/OracleHomes/oms10g/j2ee/deploy.ini.
    Oc4jDeploy tool completed successfully!
    <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/ocsaddressbook.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/esadmin.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/collabsuiteuser.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/ocsclient_gc.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_mcs_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_files_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_discussions_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_wireless_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_repserv_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_repserv_em.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_repserv_emjsp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_portal_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_portal_em.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_portal_emjsp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_integrationbpm_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_integic_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_integb2b_engine_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_integb2b_instance_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_ifs_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_forms_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_sso_emjsp.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_bc4j_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_sso_server_em.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_sso_server_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_discoverer_rb.jar"/> to orion-web.xml
    adding <classpath path="/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/j2ee/oracle_integrationbam_rb.jar"/> to orion-web.xml
    exeuting cmd line : /u01/app/oracle/OracleHomes/oms10g/jdk/bin/java -classpath /u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emCORE.jar:/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/emagentSDK.jar:/u01/app/oracle/OracleHomes/oms10g/sysman/jlib/log4j-core.jar oracle.sysman.emSDK.util.help.BuildMasterHelpSet /u01/app/oracle/OracleHomes/oms10g/j2ee/OC4J_EM/applications/em/em
    exeuting cmd line : /u01/app/oracle/OracleHomes/oms10g/jdk/bin/jar cfM /oracle/oratmp/em/em.war *
    exeuting cmd line : /u01/app/oracle/OracleHomes/oms10g/jdk/bin/jar cfM /u01/app/oracle/OracleHomes/oms10g/lib/em.ear em.war META-INF
    exeuting cmd line : /u01/app/oracle/OracleHomes/oms10g/jdk/bin/java -Xmx512M -DemLocOverride=/u01/app/oracle/OracleHomes/oms10g -Djava.net.preferIPv4Stack=true -classpath /u01/app/oracle/OracleHomes/oms10g/dcm/lib/dcm.jar:/u01/app/oracle/OracleHomes/oms10g/jlib/emConfigInstall.jar:/u01/app/oracle/OracleHomes/oms10g/lib/classes12.zip:/u01/app/oracle/OracleHomes/oms10g/lib/dms.jar:/u01/app/oracle/OracleHomes/oms10g/j2ee/home/oc4j.jar:/u01/app/oracle/OracleHomes/oms10g/lib/xschema.jar:/u01/app/oracle/OracleHomes/oms10g/lib/xmlparserv2.jar:/u01/app/oracle/OracleHomes/oms10g/opmn/lib/ons.jar:/u01/app/oracle/OracleHomes/oms10g/dcm/lib/oc4j_deploy_tools.jar oracle.j2ee.tools.deploy.Oc4jDeploy -oraclehome /u01/app/oracle/OracleHomes/oms10g -verbose -inifile /u01/app/oracle/OracleHomes/oms10g/j2ee/deploy.ini -redeploy
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    warning: invalid plugin directory `/jre/lib/PA_RISC2.0/plugins/`.
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 1 have been completed with status=true
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 2 have been completed with status=true
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:Operation Creating OMS Respository is in progress.
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:EmcpPlug:getParamStringDecrypted:Decrypting parameter=s_encrSysPwd
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:EmcpPlug:getParamStringDecrypted:Decrypting parameter=s_encrReposPwd
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:EmcpPlug:getParamStringDecrypted:Decrypting parameter=s_encrMetalinkPwd
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:EmcpPlug:getParamStringDecrypted:Decrypting parameter=s_encrProxyPwd
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Executing Command=/u01/app/oracle/OracleHomes/oms10g/sysman/admin/emdrep/bin/RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=db1p)(PORT=1521)))(CONNECT_DATA=(SID=des9))) -action drop -repos_user SYSMAN -output_file /u01/app/oracle/OracleHomes/oms10g/sysman/log/emca_repos_drop08_10_29.log
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:drain:Drainig running process...
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:/u01/app/oracle/OracleHomes/oms10g/sysman/admin/emdrep/bin/RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=db1p)(PORT=1521)))(CONNECT_DATA=(SID=des9))) -action drop -repos_user SYSMAN -output_file /u01/app/oracle/OracleHomes/oms10g/sysman/log/emca_repos_drop08_10_29.log have completed with exitCode=0
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    Enter SYS user's password :
    Getting temporary tablespace from database...
    Found temporary tablespace: TEMP
    Checking SYS Credentials ... OK.
    Dropping the repository..
    Quiescing DB ... Done.
    Checking for Repos User ... Does not Exist.
    Repos User does not exist ... Continuing with cleanup ...
    Dropping Roles/Synonymns/Tablespaces ... Done.
    Unquiescing DB ... Done.
    Dropped Repository Successfully.
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    stty: : Not a typewriter
    stty: : Not a typewriter
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Executing Command=/u01/app/oracle/OracleHomes/oms10g/sysman/admin/emdrep/bin/RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=db1p)(PORT=1521)))(CONNECT_DATA=(SID=des9))) -action create -repos_user SYSMAN -metalink_username [email protected] -output_file /u01/app/oracle/OracleHomes/oms10g/sysman/log/emca_repos_create08_10_47.log -ecm_datafile /u10/oradata/DES9/mgmt_ecm_depot1.dbf -datafile /u10/oradata/DES9/mgmt.dbf
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:drain:Drainig running process...
    INFO: oracle.sysman.top.oms:RepManager Create Repository Error = 14. Please check the log file at /u01/app/oracle/OracleHomes/oms10g/sysman/log/emca_repos_create08_10_47.log
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:/u01/app/oracle/OracleHomes/oms10g/sysman/admin/emdrep/bin/RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=db1p)(PORT=1521)))(CONNECT_DATA=(SID=des9))) -action create -repos_user SYSMAN -metalink_username [email protected] -output_file /u01/app/oracle/OracleHomes/oms10g/sysman/log/emca_repos_create08_10_47.log -ecm_datafile /u10/oradata/DES9/mgmt_ecm_depot1.dbf -datafile /u10/oradata/DES9/mgmt.dbf have completed with exitCode=14
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'The OutputFile is too big to be read in memory! Check LogFile=/u01/app/oracle/OracleHomes/oms10g/sysman/log/emca_repos_create08_10_47.log
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    stty: : Not a typewriter
    stty: : Not a typewriter
    stty: : Not a typewriter
    stty: : Not a typewriter
    stty: : Not a typewriter
    stty: : Not a typewriter
    INFO: oracle.sysman.top.oms:RepManager Create Repository Error = 14. Please check the log file at /u01/app/oracle/OracleHomes/oms10g/sysman/log/emca_repos_create08_10_47.log
    FINE: oracle.sysman.emCfg.logger.CfmLogger: log: oracle.sysman.top.oms:EmcpPlug:run:Processing Exception caught=RepManager Create Repository Error = 14. Please check the log file at /u01/app/oracle/OracleHomes/oms10g/sysman/log/emca_repos_create08_10_47.log
    WARNING: oracle.sysman.top.oms:EmcpPlug:startProcessing:Exception in runner=RepManager Create Repository Error = 14. Please check the log file at /u01/app/oracle/OracleHomes/oms10g/sysman/log/emca_repos_create08_10_47.log
    INFO: oracle.sysman.top.oms:EmcpPlug:invoke:Completed EmcpPlug invoke method on an aggregate=oracle.sysman.top.oms for Action=configuration in step=2:microstep=0
    INFO: oracle.sysman.top.oms:Internal PlugIn for {Micro Step state:step:2:configuration in CfmAggregateInstance: oracle.sysman.top.oms:10.2.0.1.0:common:family=CFM:oh=/u01/app/oracle/OracleHomes/oms10g:label=0} failed with an unhandled exception:
    java.lang.Exception: RepManager Create Repository Error = 14. Please check the log file at /u01/app/oracle/OracleHomes/oms10g/sysman/log/emca_repos_create08_10_47.log
         at oracle.sysman.emcp.util.EmcpPlug.startProcessing(EmcpPlug.java:397)
         at oracle.sysman.emcp.util.EmcpPlug.invoke(EmcpPlug.java:368)
         at oracle.sysman.emCfg.core.PerformMicroStep.runJavaClass(PerformMicroStep.java:509)
         at oracle.sysman.emCfg.core.PerformMicroStep.executeMicroStep(PerformMicroStep.java:121)
         at oracle.sysman.emCfg.core.ActionPerformer.performMicroStep(ActionPerformer.java:917)
         at oracle.sysman.emCfg.core.ActionPerformer$Performer.run(ActionPerformer.java:1038)
    INFO: oracle.sysman.top.oms:The plug-in OMS Configuration has failed its perform method

  • Not able to remove streams connfiguration using Enterprise manager.

    I logged in to enterprise manager as "strmadmin"
    maintenance -> streams -> management then in related links clicked "remove streams configuration"
    entered host credential and submitted the job.
    But it failed with below error.
    ERROR
    Error - java.sql.SQLException: ORA-20204: User does not exist: STRMADMIN ORA-06512: at "SYSMAN.MGMT_USER", line 122 ORA-06512: at "SYSMAN.MGMT_JOBS", line 142 ORA-06512: at "SYSMAN.MGMT_JOBS", line 78 ORA-06512: at line 1
    please help.

    There are answered thread on the same problem that may help... Server is probably trying to communicate to something that's not there... It won't say what it's trying to do, so you'll have to wait for a timeout to occur then hopefully server will log an error message that will give you the clue...
    SOA Suite 11g server soa_server1 stops at <STARTING> state
    SOA managed server startup problem
    Cheers,
    Vlad

  • SYSMAN directory deleted

    Hi,
    The oracle version is 10.2.0.5.0 on IBM-AIX. Accidently one of my team member deleted SYSMAN directory from $ORACLE_HOME. I want to configure DBCONSOLE(enterprise manager) but unable to configure it. Can anyone help me out to sort out the problem. Should i need to re-create the directory or any other method. I dont have any backup for ORACLE_HOME.
    Thanks,
    imran khan

    Lubiez Jean-Valentin wrote:
    You may try to re-configure the Database Control as follow:
    emca -deconfig dbcontrol db -repos drop
    emca -config dbcontrol db -repos create
    If the SYSMAN directory, which contains the scripts, has been deleted ... I suspect this will not work too well.
    My feeling is that OP will need to do
    - a simple DB s/w-only install into a second ORACLE_HOME,
    - copy the directory to the live DB,
    - run your commands,
    - remove the second ORACLE_HOME,
    - and most important of all start doing proper backups. -)
    I could be wrong, though. It certainly will be interesting to see how recreating the dbconstrol could recreate all the perl scripts that do the metric collection, as well as the other supporting dirs.

  • Error Level 10: I have this error where a plugin broke that I had to remove because it was not finding it. How do i install it back so it functions?

    8/29/2014 7:15am
    It seems to me that if Microsoft's platform can not fix it with the troubleshooter that the troubleshooter sucks.  It does not know when errors are thrown so your developer sucks on creating software for errors that are popping up in your software?
    if a error is thrown in Windows 8 it should catch it upon a thrown error in programming? This hsould be a level 1 ticket. Since when I call you support for error in your product no one wants to address problems in your software and get mea tech to resolve
    it?
    The question now is how do I fix this and why is it causing me an internal error 500 for my web server install?
    I may have other issues but I need access to my web server through my browser I used fsocketopen to troubleshoot it?
    It gets back a internal 500 on Gecko process in firefox and on IE it just won't serve out the document in my web server abyss or apache? So the question is what service is broken so I can't serve my [web server] pages out? Let me go through all the event
    logs that I have with errors below?
    Under Applications:
    1) Failure to load the application settings for package microsoft.windowscommunicationsapps_8wekyb3d8bbwe. Error Code: 10
    2) LMS Service cannot connect to Intel(R) MEI driver. Error level 1
    3) Failure to load the application settings for package microsoft.windowscommunicationsapps_8wekyb3d8bbwe. Error Code: 3
    4) SearchIndexer (3476) Windows: The database engine attached a database (1, C:\ProgramData\Microsoft\Search\Data\Applications\Windows\Windows.edb). (Time=0 seconds)
    5) Internal Timing Sequence: [1] 0.000, [2] 0.000, [3] 0.125, [4] 0.000, [5] 0.000, [6] 0.000, [7] 0.000, [8] 0.000, [9] 0.000, [10] 0.000, [11] 0.000, [12] 0.000.
    Saved Cache: 1 0: Evenet Id level 326.
    6) SearchIndexer (3476) Windows: The database engine started a new instance (0). (Time=0 seconds)
    7) Internal Timing Sequence: [1] 0.000, [2] 0.000, [3] 0.000, [4] 0.000, [5] 0.000, [6] 0.000, [7] 0.000, [8] 0.000, [9] 0.000, [10] 0.000. eveent level 105
    8) SearchIndexer (3476) Windows: The database engine (6.03.9600.0000) is starting a new instance (0). Error Level 102
    Under Security:
    1) We might want to check this out here User Account Management changed?
    Under Setup: no errors.
    Under System below:
    1) Name resolution for the name win8.ipv6.microsoft.com. timed out after none of the configured DNS servers responded.Event level  1014
    2) Intel(R) 82567LM-3 Gigabit Network Connection
     Network link is disconnected.
    3) The system has returned from a low power state.
    Sleep Time: ‎2014‎-‎08‎-‎29T05:10:07.602701000Z
    Wake Time: ‎2014‎-‎08‎-‎29T13:13:47.945773100Z
    Wake Source: Device -USB Root Hub : Error level 1
    4) The browser has forced an election on network \Device\NetBT_Tcpip_{58565081-3013-43B6-AE07-CC89C71F6036} because a master browser was stopped. Event Id 8033.
    5) The driver \Driver\WudfRd failed to load for the device SWD\WPDBUSENUM\_??_USBSTOR#Disk&Ven_EPSON&Prod_Storage&Rev_1.00#7&2d369789&0&533536503532383375&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}. Event error 219.
    6) The driver \Driver\WudfRd failed to load for the device SWD\WPDBUSENUM\{3c83e4cf-28e9-11e4-827b-b8ac6f8aec21}#0000000000004000. Error Level Id 219.
    7) The UMDF reflector was unable to complete startup because the WUDFPf service was not found.  This service may be started later during boot, at which point Windows will attempt to start the device again. Error Id 10114.
    8) Unable to bind to the underlying transport for [::]:80. The IP Listen-Only list may contain a reference to an interface which may not exist on this machine.  The data field contains the error number. Event Id 15005.
    9) The supersafer64 service failed to start due to the following error:
    The system cannot find the file specified. Event ID 7000.
    10) The SNMP Service encountered an error while accessing the registry key SYSTEM\CurrentControlSet\Services\SNMP\Parameters\TrapConfiguration. Error: 1500.
    11) The SAS Core Service service failed to start due to the following error:
    The system cannot find the file specified. 7000
    12 The World Wide Web Publishing Service (WWW Service) did not register the URL prefix http://*:80/ for site 1. The site has been disabled. The data field contains the error number. 1004
    13) The driver \Driver\WudfRd failed to load for the device SWD\WPDBUSENUM\_??_USBSTOR#Disk&Ven_EPSON&Prod_Storage&Rev_1.00#7&2d369789&0&533536503532383375&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}. Error level 219
    14) Name resolution for the name win8.ipv6.microsoft.com. timed out after none of the configured DNS servers responded. Error level 1014.
    Now I need help with all these error since Windows 8 with maybe 15 applications is failing after no setup errors? What would cause these we need to find out? Since I can not use your product with so many developer errors? and to put out a products that doesn
    work is pointless? So please call me and have some help me through the errors and tell your support to stop ignoring the errors that broke the products?
    Sincerely, William Dunlap {removed} N. Academy blvd, 201, Colorado Springs, CO 80910 http:\\interfacesone.fnhost.org
    {removed}.  I need a tech to help me get my web server up?

    So now you don't release the security breaches in windows 8. You mean to tell me that you can use Powershell - Using WMI to breach security in VB apps on the web by getting my file structures?
    What is this all about?
     1 Set VPN NIC Settings
        2 Get Network Data from servers
    Set VPN NIC Settings
    $error.clear | out-null
    cls
    $ErrorActionPreference = "SilentlyContinue"
    if ( $Args.Count -ne 1 ) { "
    Not enough arguments
    Usage :
        script.ps1 server
    "; exit }
    $server = $Args[0].ToLower()
    "We are working with $server"
    $netAdapt = get-wmiobject -class Win32_NetworkAdapter -computer $server
    if (!($netAdapt)) {  
        "Failed to connect to the target server!"
        exit(5)
    foreach ($card in $netAdapt) {
        IF (!([string]::IsNullOrEmpty($card.NetConnectionID))) {
            if ($card.NetConnectionID.CompareTo("VPN Virtual NIC") -eq 0) {
                $myID = $card.DeviceID
    $NAC = [wmi]"\\$server\root\cimv2:Win32_NetworkAdapterConfiguration.index='$myid'"
    $guid=$NAC.settingID
    "Setting DNS Toggles"
    $dnsToggle = $NAC.SetDynamicDNSRegistration(0,0)
    if ($dnsToggle) {
            "Success"
        } else {
            "Failure"
    $strShowNicKeyName = "SYSTEM\CurrentControlSet\Control\Network\{4D36E972-E325-11CE-BFC1-08002BE10318}\$guid\connection"
    #$strShowNicKeyName
    $reg = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey('LocalMachine', $server)
    $regKey= $reg.OpenSubKey("$strShowNicKeyName",$true)
    $showIcon = $regKey.GetValue("ShowIcon")
    if (!($showIcon -eq 1)) {
        "The icon is hidden.. Setting it now"
        $setIcon = $regKey.SetValue('ShowIcon',1,'DWORD')
       } else {
        "The icon is visible already."
    "Script Ends"
    Get Network Data from servers
    $myfile = get-content servers.txt
    echo "Server    IPs    Subnet    GW" | out-file "Results.txt" -Append
    foreach ($server in $myfile) {
        Write-Host "Looking at $server"
        $colitems = Get-WmiObject win32_NetworkAdapterConfiguration -computer "$server" -Filter 'IPEnabled = "True"' | select ipaddress,ipsubnet,index,defaultipgateway
        foreach($objItem in $colItems) {
        Write-Host ""
        $myip = $objItem.IPAddress -join " "
        $mySubnet = $objItem.IPSubnet  
        $myGW = $objItem.DefaultIPGateway
        $temp = $objItem.index
        $myid = Get-WmiObject win32_NetworkAdapter -computer "$server" -Filter "index = $temp" | select  netconnectionid
        $myid = $myid -replace "@{netconnectionid=",""
        $myid = $myid -Replace "}",""
        echo "$server    $myip    $mySubnet    $myGW    $myid"
        echo "$server    $myip    $mySubnet    $myGW    $myid"  | out-file "Results.txt" -Append
    Is this possible on any machine with power shell and if so how is access done?
    William Dunlap

  • Creating a backup of functional drive removed from broken laptop

    I have a new Macbook Pro running Mountain Lion that is damaged and won't turn on. I have the drive removed and can access it using a docking station attached to my iMac running 10.6.
    What is the simplest way to backup the data from this drive so that after the laptop is repaired I can return my data to the Macbook Pro?

    Using Disk Utility to clone a drive will automatically erase the Destination drive if it isn't already erased. To backup to a drive with stuff already on it you would need to use a backup utility like one of these:
    Suggested Backup Software
      1. Carbon Copy Cloner
      2. Data Backup
      3. Deja Vu
      4. SuperDuper!
      5. Synk Pro
      6. Tri-Backup
    Others may be found at VersionTracker or MacUpdate.
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files.
    Be sure the backup utility is NOT configured to erase all files on the destination that are not on the source. If there are files identical to those already on the drive, then they will be overwritten.

Maybe you are looking for

  • Not able to create row in HANA via .create or ajax call (oData Services)

    Hello Experts, SYSTEM: AWS (Amazone Cloud with HANA SPS06), tunneling via VPN. My HANA-Studio is rev.70 with the "Kepler" addons. I´m the owner of this Schema and granted the necessary privliegues to the __SYS_REPO User. The following issues when I t

  • Adobe Digital Editions 3.0 crash on OSX

    Hi together, I still have a problem and no one from the adobe community could help my. I am using ADE for ebooks. If I add a new ebook to the libary the programm will crash. Could somone help me? I have fixed the user rights. I have checked the files

  • Can't Drag and Drop in iTunes 10!

    This was driving me crazy! You can't move tracks within a playlist or drag and drop content from iTunes to your iPod. I hope that Apple will fix this soon! Until Apple fixes this, your best bet is to download iTunes 9. I did, and all my drag and drop

  • File Permission, Sharing and Windows 2008R2

    We are pilioting OSX (10.7.4) and are having an issue with file access: Scenario File Server:  Windows 2008 R2 Authentication: Active Directory Integrated Share Mounted:  DFS Path or File share @ CIFS://SERVERNAME/SHARENAME Share Permissions:   Full

  • How to enable TOTAL COMPENSATION link in ESS

    Hi All, We have an iview TOTAL COMPENSATION in Benifits and Payments folder in Portal Content->Content Proided by SAP->End user content->Employee self service.But we are unable to see this in Benifits and Payments tab for an ESS user. How to enable t