Skip to main content

Posts

MongoDB - How to Install MongoDB on Linux

MongoDB - How to Install MongoDB on Linux Please follow the below steps to Install MongoDB Enterprise Edition on Linux: 1.Configure repository. Create an  /etc/yum.repos.d/mongodb-enterprise.repo  file so that you can install MongoDB enterprise directly using  yum : [mongodb-enterprise] name = MongoDB Enterprise Repository baseurl = https://repo.mongodb.com/yum/redhat/$releasever/mongodb-enterprise/4.2/$basearch/ gpgcheck = 1 enabled = 1 gpgkey = https://www.mongodb.org/static/pgp/server-4.2.asc You can also download the  .rpm  files directly from the  MongoDB repository . 2. Install the MongoDB Enterprise packages. Install MongoDB Enterprise 4.2. Issue the following command: copy copied sudo yum install -y mongodb-enterprise
Recent posts

EBS 12.2 Install on Linux 8 Fails with Fatal Error: TXK Install Service Cannot install Web Tier Utilities

 EBS 12.2 Install on Linux 8 Fails with Fatal Error: TXK Install Service Cannot install Web Tier Utilities I am trying to Install EBS 12.2 Install on Linux 8, it fails with below error  Fatal Error: TXK Install Service Cannot nstall Web Tier Utilities The exact error is :  ---------------------------------------------------------------------------------------------------------- Executing command: /u01/soft/ebs/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /u01/oracle/STDPR/fs2/inst/apps/STDPR_ebs22/temp/ASInstallHome/fnd/../j11067592_fnd.zip:/u01/oracle/STDPR/fs2/inst/apps/STDPR_ebs22/temp/ASInstallHome/fnd/java/3rdparty/stdalone/xmlparserv2.zip -Doracle.apps.fnd.txk.env_home=/u01/oracle/STDPR/fs2/EBSapps/appl/admin/STDPR_ebs22/ -Doracle.apps.fnd.txk.runtime.config=/u01/oracle/STDPR/fs2/inst/apps/STDPR_ebs22/temp/xmldocs/instWeb.xml oracle.apps.fnd.txk.config.InstallService Fatal Error: TXK Install Service oracle.apps.fnd.txk.config.ProcessStateException: O...

Fatal Error: TXK Install Service oracle.apps.fnd.txk.config.ProcessStateException: FileSys OS COMMAND Failed : Exit=2 See log for details. CMD= make -f ins_forms.mk sharedlib install

Fatal Error: TXK Install Service  oracle.apps.fnd.txk.config.ProcessStateException: FileSys OS COMMAND Failed : Exit=2 See log for details. CMD= make -f ins_forms.mk sharedlib install 12.2. Installation fails with below error: Fatal Error: TXK Install Service oracle.apps.fnd.txk.config.ProcessStateException: FileSys OS COMMAND Failed : Exit=2 See log for details. CMD= make -f ins_forms.mk sharedlib install ## Node=NodeId=1105 Type=24 TypeName=filesys_patch_action Name= RefId=457 State=init ConfigDoc=APPS_C_HOME ParentDoc=null Topology=R12 Action=os_cmd     at oracle.apps.fnd.txk.config.FileSysPatchActionNode.doFileSysOSCmd(FileSysPatchActionNode.java:169)     at oracle.apps.fnd.txk.config.FileSysPatchActionNode.processState(FileSysPatchActionNode.java:101)     at oracle.apps.fnd.txk.config.PatchActionNode.processState(PatchActionNode.java:187)     at oracle.apps.fnd.txk.config.PatchNode.processState(PatchNode.java:338)     at oracle...

Errors while applying Patch 28840850 in 12.2

Errors while applying Patch 28840850 1. Error running SQL and EXEC commands in parallel Telling workers to read 'todo' restart file. Done. ATTENTION: All workers either have failed or are waiting:            FAILED: file MSDXWDEVKIT.sql on worker  1. ATTENTION: Please fix the above failed worker(s) so the manager can continue. Solution: use adctrl and skip the job Then restart the patch application using restart =yes

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: ------------------------------------...