EM 12c Cloud Control Re-Installation Fails at Repository Configuration With Error "RCU-6016:The spe
Information in this document applies to any platform.
Symptoms Installation of EM 12c Cloud Control fails at MDS Schema Configuration or it errors out in view log section as follows:
filename:/DATA/Middleware/oms/sysman/log/schemamanager/m_100911_0511_PM/m_100911_0511_PM.CREATE/emschema.log newly created:/DATA/Middleware/oms/sysman/log/schemamanager/m_100911_0511_PM/m_100911_0511_PM.CREATE/emschema.log jdbcUrl = jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=Evildead.idc.oracle.com)(PORT=1521)))(CONNECT_DATA=(SID=orcl))) Processing command line .... Repository Creation Utility - Checking Prerequisites Checking Global Prerequisites RCU-6016:The specified prefix already exists. RCU-6091:Component name/schema prefix validation failed. Processing command line .... Repository Creation Utility - Checking Prerequisites Checking Global Prerequisites RCU-6016:The specified prefix already exists. RCU-6091:Component name/schema prefix validation failed.
The OMS_HOME/sysman/log/schemamanager/m_
2011-10-09 17:24:50.450 TRACE rcu: oracle.sysman.assistants.rcu.backend.validation.StepValidator::setPrefixInfo: Detect query before variable substitution: 2011-10-09 17:24:50.450 TRACE rcu: oracle.sysman.assistants.rcu.backend.validation.StepValidator::setPrefixInfo: Detect query after variable substitution: 2011-10-09 17:24:50.453 TRACE rcu: oracle.sysman.assistants.rcu.backend.validation.StepValidator::isConnectionStepValidated: Leaving. 2011-10-09 17:24:50.453 ERROR rcu: oracle.sysman.assistants.rcu.backend.RCUCommandLineParser::setComponentSelections: RCU-6016:The specified prefix already exists. 2011-10-09 17:24:50.453 NOTIFICATION rcu: oracle.sysman.assistants.common.util.SilentMessageHandler::writeToLog: RCU-6016:The specified prefix already exists. 2011-10-09 17:24:50.453 ERROR rcu: oracle.sysman.assistants.rcu.backend.SilentRCUModel::performOperation: RCU-6091:Component name/schema prefix validation failed. 2011-10-09 17:24:50.453 NOTIFICATION rcu: oracle.sysman.assistants.common.util.SilentMessageHandler::writeToLog: RCU-6091:Component name/schema prefix validation failed.
Cause The repository was cleaned-up using
"drop user"command instead of
"RepManager dropall". Due to this, the resulting repository record for the sysman_mds, sysman_opss, sysman_apm schemas are not cleaned-up.
Solution 1. Connect to the repository database an ADMIN user and execute the following SQL statement:
SQL> select comp_name from SCHEMA_VERSION_REGISTRY;
COMP_NAME
--------------------------------------------------------------------------------
Authorization Policy Manager
Metadata Services
Oracle Platform Security Service
2. If any row is returned, delete it with one or all the folling SQL statements:
SQL> delete from SCHEMA_VERSION_REGISTRY where COMP_NAME='Authorization Policy Manager';
SQL> delete from SCHEMA_VERSION_REGISTRY where COMP_NAME='Oracle Platform Security Services';
SQL> delete from SCHEMA_VERSION_REGISTRY where COMP_NAME='Metadata Services';
SQL> commit;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.