Skip to main content

Posts

Showing posts from December, 2025

Installing Oracle Enterprise Manager Cloud Control 13c Release 5 (13.5.0.0.0) for Linux x86-64

 Installing Oracle Enterprise Manager Cloud Control 13c Release 5 (13.5.0.0.0) for Linux x86-64 In this note, we will install the Oracle Enterprise Manager Cloud Control 13c Release 5 (13.5.0.0.0) for Linux x86-64 1. Download the software from the oracle support link  https://www.oracle.com/enterprise-manager/downloads/linux-x86-64-13c-rel5-downloads.html 2. Launch the installer after giving execute permission chmod +x em13500_linux64.bin [oracle@oel76 oem]$ ./em13500_linux64.bin ERROR: Temporary directory /tmp does not have enough free space. At least 12289 MB of free space are required. Please input another directory or [Exit]: /u01/oem/tmp Launcher log file is /u01/oem/tmp/OraInstall2025-12-16_06-44-55PM/launcher2025-12-16_06-44-55PM.log. Extracting the installer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...

How to validate the system and EBS_SYSTEM passwords in EBS 12.2

 How to validate the system and EBS_SYSTEM passwords in EBS 12.2 In EBS 12.2. while using ad utilities esp adop to patch the applications, we may face the issue with system and EBS_SYSTEM passwords.  They should be same in EBS 12.2.  To validate these two passwords use the utility adValidateEbssystemSchema.pl applprod@server01:/u03/applsmu3/R122/fs1/EBSapps/appl/ad/12.0.0/bin$ perl adValidateEbssystemSchema.pl Enter the APPS password: Enter the SYSTEM password: Validating APPS credentials...validated successfully Validating SYSTEM credentials...validated successfully Validating EBS_SYSTEM user ebssys codelevel = C.0 ***** E R R O R ***** User : EBS_SYSTEM ORA-01017: invalid username/password; logon denied ********************* Error: EBS_SYSTEM password is not the same as SYSTEM password Please change the EBS_SYSTEM password to be the same as SYSTEM password ALTER USER EBS_SYSTEM IDENTIFIED BY <SYSTEM PASSWORD> applprod@server01: ------------------------------------...