8 Oracle EBS 12.2.X Database and Middleware Upgrade Steps

 

8.1       Apply Required Database Patches

8.1.1     Determine the latest database PSU

Refer to the following document and the section for the latest applicable database RU for EBS 12.2:

Oracle E-Business Suite Release 12.2: Consolidated List of Patches and Technology Bug Fixes (Doc ID 1594274.1)

Search for the pattern ‘recommended Release Update’.

The latest patches at the moment of this research were:

34419443 - Database Release Update 19.17.0.0.221018

34411846 - Oracle JavaVM Component Release Update 19.17.0.0.221018

8.1.2     Download and unzip latest OPatch

Before patches application OPatch always should be updated to avoid unexpected issues.

$ cd $ORACLE_HOME
$ mv OPatch/ OPatch_bkp
$ cp ~/patches/p6880880_190000_Linux-x86-64.zip .
$ unzip p6880880_190000_Linux-x86-64.zip

8.1.3     Determine patches conflicts

If any conflicts are faced, please refer to MOS Documents to resolve them. Alternatively, My Oracle Support Patch Conflict Checker Tool can be used or Oracle Service Request can be created.

$ cd 34419443
$ opatch prereq CheckConflictAgainstOHWithDetail -ph ./

Prereq “checkConflictAgainstOHWithDetail” passed.

 
$ cd 34411846
$ opatch prereq CheckConflictAgainstOHWithDetail -ph ./

Prereq “checkConflictAgainstOHWithDetail” passed.

 

8.1.4     Shutdown apps and db services

 
$ . /u01/install/APPS/EBSapps.env run
$ cd $ADMIN_SCRIPTS_HOME
$ ./adstpall.sh
$ . /u01/install/APPS/19c/CDBVIS_demo.env
$ echo "shu immediate"|sqlplus '/as sysdba'
$ lsnrctl stop $ORACLE_SID

8.1.5     Apply patches with OPatch

Start screen to save session in case of network interruptions. If screen utility is not available on your server, I recommend to install it. It’s a very handy tool.

$ screen -S patching
$ cd 34419443
$ opatch apply
$ egrep -i "error|fail|ORA-|ac-|rc-"  /u01/install/APPS/12.1.0/cfgtoollogs/opatch/opatch2018-10-11_10-21-18AM_1.log
$ cd 34411846
$ opatch apply
$ egrep -i "error|fail|ORA-|ac-|rc-"  /u01/install/APPS/12.1.0/cfgtoollogs/opatch/opatch2018-10-11_10-23-02AM_1.log

8.1.6     Load Modified SQL Files into the Database

Datapatch can be run once for both OJVM and DB PSU in upgrade mode. The below instructions are applicable for a multitenant database.

SQL> sqlplus '/as sysdba'
SQL> startup upgrade
SQL> alter pluggable database all open upgrade;
SQL> quit;
$ cd $ORACLE_HOME/OPatch
$ ./datapatch -verbose
SQL> sqlplus '/as sysdba'
SQL> shutdown immediate
SQL> startup
SQL> alter pluggable database all open;
 

For a standalone database please use the following instructions

SQL> sqlplus '/as sysdba'
SQL> startup upgrade
$ cd $ORACLE_HOME/OPatch
$ ./datapatch -verbose
SQL> sqlplus '/as sysdba'
SQL> shutdown immediate;
SQL> startup
 

8.1.7     Recompile invalid objects

The following command can be used to recompile invalid objects in all containers in a multitenant database as per the following link.

$ORACLE_HOME/perl/bin/perl $ORACLE_HOME/rdbms/admin/catcon.pl --n 1 --e -l /tmp --b utlrp --d $ORACLE_HOME/rdbms
/admin utlrp.sql
 

For a standalone database please use the following instructions

$ cd $ORACLE_HOME/rdbms/admin
$ sqlplus '/as sysdba'
SQL> @utlrp.sql
 

8.2       ETCC Tool Enhanced for Finding Mandatory EBS 12.2 Patches

Download 36616672 EBS RELEASE 12.2 CONSOLIDATED FMW FIXES FOR JUL 2024 (Patch)

8.3       Apply latest WLS PSU to patch fs

8.3.1     Start a new patching cycle

For convenience passwords can be assigned to variables, so they don’t have to be provided manually.

$ read -s appspass
$ read -s systempass
$ read -s wlspass
 

Start new patching cycle (WLS admin server will be started automatically on run fs)

{ echo $appspass; echo $systempass; echo $wlspass; }|adop phase=prepare
Remove conflicting patches applied on top of previous WLS PSU:
{
. ~/EBSapps.env patch
cd $FMW_HOME/utils/bsu
$FMW_HOME/utils/bsu/bsu.sh -prod_dir=$FMW_HOME/wlserver_10.3 -status=applied -verbose -view
$FMW_HOME/utils/bsu/bsu.sh -remove -patchlist=TTGM,6VAM -prod_dir=$FMW_HOME/wlserver_10.3
$FMW_HOME/utils/bsu/bsu.sh -remove -patchlist=21Y4 -prod_dir=$FMW_HOME/wlserver_10.3
}
 

Apply Patch 34009030: WLS Patch Set Update 10.3.6.0.220719 (RAWM) to patch fs

{
. ~/EBSapps.env patch
cp /stage/patches/WLS_RUP/RAWM.jar $FMW_HOME/utils/bsu/cache_dir/
cp /stage/patches/WLS_RUP/patch-catalog_27884.xml $FMW_HOME/utils/bsu/cache_dir/
cd $FMW_HOME/utils/bsu
$FMW_HOME/utils/bsu/bsu.sh -install -patch_download_dir=$FMW_HOME/utils/bsu/cache_dir -patchlist=RAWM 
-prod_dir=$FMW_HOME/wlserver_10.3
}

Check Weblogic version after patch application

$ . $FMW_HOME/wlserver_10.3/server/bin/setWLSEnv.sh
$ java weblogic.version
 

WebLogic Server 10.3.6.0.220719 PSU Patch for BUG33172858 Mon Oct 4 16:20:26 UTC 2021

8.4       Apply DB ETCC patches

8.4.1     Run ETCC report on DB tier

Run the latest version of the EBS Technology Codelevel Checker via Patch 17537119. ETCC patches are required as a pre-requisite for latest AD and TXK RUP patches.

$ cd /stage/patches/ETCC
$ ./checkDBpatch.sh
 

List of patches to be applied:

p33525014_1917000DBRU_Linux-x86-64.zip
 

Shutdown database instance, identify and rollback conflicting patches.

$ echo "shu immediate"|sqlplus '/as sysdba'
$ lsnrctl stop $ORACLE_SID
 
$ unzip 'p*zip'
$ cd [patch number]
$ opatch prereq CheckConflictAgainstOHWithDetail -ph ./
{
opatch rollback -id  -silent
}
 

8.4.2     Apply patches

For all above patches commands to apply are:

 

$ cd [patch number]
$ opatch apply
$ egrep -i "error|fail|ORA-|ac-|rc-"
 

8.4.3     Post installation tasks

Run datapatch and recompile invalid objects

$ lsnrctl start $ORACLE_SID
$ cd $ORACLE_HOME/OPatch
$ echo "startup"|sqlplus '/as sysdba'
$ ./datapatch -verbose
 

Recompilation instructions for a multitenant database

$ORACLE_HOME/perl/bin/perl $ORACLE_HOME/rdbms/admin/catcon.pl --n 1 --e -l /tmp --b utlrp 
--d $ORACLE_HOME/rdbms/admin utlrp.sql
 

Recompilation instructions for a standalone database

SQL>@?/rdbms/admin/utlrp.sql
 

Re-run ETCC report to ensure, that all patches are applied now

[oracle@apps patches]$ . ~/FBS_database.env
[oracle@apps patches]$ ./checkDBpatch.sh
>>All the required one-off bugfixes are present in Database ORACLE_HOME.

8.4.4     Set Database Parameters

Parameters are needed to be adjusted as follows.

For a database version 12.1.0.2 only

optimizer_adaptive_features=false

For Oracle Database 11.2.0.4, Oracle Database 12.1.0.2, and Oracle Database 19c

“_disable_actualization_for_grant”=true
 

Commands to setup the above parameters are:

SQL> alter system set "_disable_actualization_for_grant"=true;
SQL> alter system set optimizer_adaptive_features=false;

8.5       Apply MT ETCC patches

8.5.1     Run ETCC report on MT tier

Run the latest version of the EBS Technology Codelevel Checker via Patch 17537119. This step is a prerequisite for applying the Latest AD and TXK Delta RUPS.

$ cd /stage/patches/ETCC
[oracle@apps patches]$ ./checkMTpatch.sh
 
 +===============================================================+ 
 |    Copyright (c) 2005, 2025 Oracle and/or its affiliates.     | 
 |                     All rights reserved.                      | 
 |             Oracle E-Business Suite Release 12.2              | 
 |        Application Tier EBS Technology Codelevel Checker      | 
 +===============================================================+ 

+---------------------------------------------------------------------------------------+
Executing command: checkMTpatch.sh 
+---------------------------------------------------------------------------------------+


Using context file from currently set applications environment:
/u01/app/UAT/fs1/inst/apps/UAT_ebstest/appl/admin/UAT_ebstest.xml

Starting Application Tier EBS Technology Codelevel Checker, Version 120.0.12020000.70.
Tue Jun 17 21:47:23 EAT 2025
Log file for this session: /u01/app/UAT/fs_ne/EBSapps/patch/etcc/log/checkMTpatch_301164.log

Bugfix XML file version: 120.0.12020000.64
This file will be used for identifying missing bugfixes. 

Mapping XML file version: 120.0.12020000.52
This file will be used for mapping bugfixes to patches.


[WARNING] ETCC: Bugfix XML file (./mw/txk_R1220_MT_base_bugs.xml) is more than
 30 days old.
 
Checking for prerequisite bugfixes in File Edition: run

Connecting to database. 
Database connection successful.
The installed AD.C.16 codelevel supports storing the results in the database.
Checking for existence of ETCC results table. 
Table to store results already exists in database. 

===============================================================================
Oracle Forms and Reports
===============================================================================
Now examining Oracle Forms and Reports.
Oracle Home: /u01/app/UAT/fs1/EBSapps/10.1.2.
Product version: 10.1.2.3.0.
Checking required bugfixes for Oracle Forms and Reports 10.1.2.3.0.
  Missing Bugfix: 17353142  -> Patch 32922089
  Missing Bugfix: 20643256  -> Patch 32922089
  Missing Bugfix: 16041055  -> Patch 32922089
  Missing Bugfix: 16910762  -> Patch 32922089
  Missing Bugfix: 20270659  -> Patch 32922089
  Missing Bugfix: 17372642  -> Patch 32922089
  Missing Bugfix: 17566694  -> Patch 32922089
  Missing Bugfix: 20240480  -> Patch 32922089
  Missing Bugfix: 19304738  -> Patch 32922089
  Missing Bugfix: 20391574  -> Patch 32922089
  Missing Bugfix: 22351071  -> Patch 32922089
  Missing Bugfix: 21024122  -> Patch 32922089
  Missing Bugfix: 19588847  -> Patch 32922089
  Missing Bugfix: 19639173  -> Patch 32922089
  Missing Bugfix: 20545718  -> Patch 32922089
  Missing Bugfix: 22524329  -> Patch 32922089
  Missing Bugfix: 23123655  -> Patch 32922089
  Missing Bugfix: 23728755  -> Patch 32922089
  Missing Bugfix: 24315226  -> Patch 32922089
  Missing Bugfix: 24480018  -> Patch 32922089
  Missing Bugfix: 24808044  -> Patch 32922089
  Missing Bugfix: 24620875  -> Patch 32922089
  Missing Bugfix: 25355211  -> Patch 32922089
  Missing Bugfix: 23538157  -> Patch 32922089
  Missing Bugfix: 23538170  -> Patch 32922089
  Missing Bugfix: 13557392  -> Patch 32922089
  Missing Bugfix: 25506193  -> Patch 32922089
  Missing Bugfix: 25342269  -> Patch 25342269
  Missing Bugfix: 26048089  -> Patch 32922089
  Missing Bugfix: 25990479  -> Patch 32922089
  Missing Bugfix: 1770039  -> Patch 32922089
  Missing Bugfix: 27491934  -> Patch 27491934
  Missing Bugfix: 25790854  -> Patch 32922089
  Missing Bugfix: 32878968  -> Patch 32922089
The above list shows missing bugfixes for Oracle Forms and Reports.
These results have been stored in the database.

Identified DST version: 18

Checking required bugfixes for RSF 10.1.0.5.0 in Oracle Forms.
All required bugfixes are present for RSF 10.1.0.5.0 in Oracle Forms.
These results have been stored in the database.

===============================================================================
Oracle Fusion Middleware (FMW) - Web Tier
===============================================================================
Now examining Oracle Fusion Middleware (FMW) - Web Tier.

Oracle Home: /u01/app/UAT/fs1/FMW_Home/webtier.
Product version: 11.1.1.9.0.
Checking required bugfixes for FMW - Web Tier 11.1.1.9.0.
  Missing Bugfix: 21300463  -> Patch 22288381
  Missing Bugfix: 21892015  -> Patch 22288381
  Missing Bugfix: 24567879  -> Patch 35540062
  Missing Bugfix: 20900385  -> Patch 35540062
  Missing Bugfix: 25205368  -> Patch 32287205
  Missing Bugfix: 26837992  -> Patch 35540062
  Missing Bugfix: 21305938  -> Patch 35540062
  Missing Bugfix: 20913582  -> Patch 35540062
  Missing Bugfix: 22218211  -> Patch 35540062
  Missing Bugfix: 23107407  -> Patch 35540062
  Missing Bugfix: 19571821  -> Patch 35540062
  Missing Bugfix: 26929226  -> Patch 35540062
  Missing Bugfix: 25191174  -> Patch 35540062
  Missing Bugfix: 26101975  -> Patch 35540062
  Missing Bugfix: 21520649  -> Patch 35540062
  Missing Bugfix: 23266217  -> Patch 32287205
  Missing Bugfix: 23115139  -> Patch 32287205
  Missing Bugfix: 26318200  -> Patch 32287205
  Missing Bugfix: 23140259  -> Patch 32287205
  Missing Bugfix: 25914276  -> Patch 32287205
  Missing Bugfix: 20856766  -> Patch 32287205
  Missing Bugfix: 26434300  -> Patch 32287205
  Missing Bugfix: 25879984  -> Patch 32287205
  Missing Bugfix: 19891090  -> Patch 32287205
  Missing Bugfix: 18604692  -> Patch 32287205
  Missing Bugfix: 29389063  -> Patch 32287205
  Missing Bugfix: 20273319  -> Patch 32287205
  Missing Bugfix: 25775213  -> Patch 32287205
  Missing Bugfix: 26245237  -> Patch 32287205
  Missing Bugfix: 18166013  -> Patch 32287205
  Missing Bugfix: 19718981  -> Patch 32287205
  Missing Bugfix: 21656630  -> Patch 32287205
  Missing Bugfix: 19697993  -> Patch 32287205
  Missing Bugfix: 23055182  -> Patch 32287205
  Missing Bugfix: 25760218  -> Patch 32287205
  Missing Bugfix: 20725343  -> Patch 32287205
  Missing Bugfix: 16354467  -> Patch 32287205
  Missing Bugfix: 22750215  -> Patch 32287205
  Missing Bugfix: 25635149  -> Patch 32287205
  Missing Bugfix: 25555252  -> Patch 32287205
  Missing Bugfix: 17983206  -> Patch 32287205
  Missing Bugfix: 21063322  -> Patch 32287205
  Missing Bugfix: 26243698  -> Patch 32287205
  Missing Bugfix: 23716938  -> Patch 23716938
  Missing Bugfix: 23716938  -> Patch 23716938
  Missing Bugfix: 24681614  -> Patch 35540062
  Missing Bugfix: 30146419  -> Patch 35540062
  Missing Bugfix: 20580842  -> Patch 35540062
  Missing Bugfix: 27577851  -> Patch 35540062
  Missing Bugfix: 25288078  -> Patch 32287205
  Missing Bugfix: 30887923  -> Patch 35540062
  Missing Bugfix: 26752325  -> Patch 35540062
  Missing Bugfix: 30876572  -> Patch 35540062
  Missing Bugfix: 31285797  -> Patch 32287205
  Missing Bugfix: 31909295  -> Patch 32287205
  Missing Bugfix: 31748000  -> Patch 32287205
  Missing Bugfix: 31696577  -> Patch 32287205
  Missing Bugfix: 27072923  -> Patch 32287205
  Missing Bugfix: 31169366  -> Patch 32287205
  Missing Bugfix: 17428816  -> Patch 32287205
  Missing Bugfix: 31658943  -> Patch 32287205
  Missing Bugfix: 32294066  -> Patch 35540062
  Missing Bugfix: 32593782  -> Patch 35540062
  Missing Bugfix: 31586302  -> Patch 35540062
  Missing Bugfix: 29857440  -> Patch 35540062
  Missing Bugfix: 32928416  -> Patch 32928416
  Missing Bugfix: 32949290  -> Patch 33144848
  Missing Bugfix: 33231206  -> Patch 35540062
  Missing Bugfix: 34067016  -> Patch 34067016
  Missing Bugfix: 33890540  -> Patch 35540062
  Missing Bugfix: 33634304  -> Patch 35540062
  Missing Bugfix: 29220393  -> Patch 35540062
  Missing Bugfix: 34287094  -> Patch 35540062
  Missing Bugfix: 34287122  -> Patch 35540062
  Missing Bugfix: 34637603  -> Patch 35540062
  Missing Bugfix: 34642403  -> Patch 35540062
  Missing Bugfix: 35243151  -> Patch 35540062
The above list shows missing bugfixes for FMW - Web Tier.
These results have been stored in the database.

Identified DST version: 18

Checking required bugfixes for RSF 11.1.0.7.0 in FMW Web tier.
  Missing Bugfix: 20004021  -> Patch 22290164
  Missing Bugfix: 20004087  -> Patch 22290164
  Missing Bugfix: 16872333  -> Patch 22290164
  Missing Bugfix: 19699191  -> Patch 22290164
  Missing Bugfix: 20558005  -> Patch 22290164
  Missing Bugfix: 20331945  -> Patch 22290164
The above list shows missing bugfixes for RSF 11.1.0.7.0 in FMW Web tier.
These results have been stored in the database.

===============================================================================
Oracle Fusion Middleware (FMW) - Oracle Common
===============================================================================
Now examining Oracle Fusion Middleware (FMW) - Oracle Common.

Oracle Home: /u01/app/UAT/fs1/FMW_Home/oracle_common.
Product version: 11.1.1.9.0.
Checking required bugfixes for FMW - Oracle Common 11.1.1.9.0.
  Missing Bugfix: 9905685  -> Patch 9905685
  Missing Bugfix: 17428617  -> Patch 17428617
  Missing Bugfix: 21366277  -> Patch 21366277
  Missing Bugfix: 21628307  -> Patch 21628307
  Missing Bugfix: 24606362  -> Patch 24606362
  Missing Bugfix: 24843064  -> Patch 24843064
  Missing Bugfix: 13544814  -> Patch 13544814
  Missing Bugfix: 14354533  -> Patch 33974106
  Missing Bugfix: 14282782  -> Patch 33974106
  Missing Bugfix: 16089637  -> Patch 16089637
  Missing Bugfix: 20141119  -> Patch 20141119
  Missing Bugfix: 24335626  -> Patch 34330735
  Missing Bugfix: 22998551  -> Patch 34330735
  Missing Bugfix: 22660018  -> Patch 34330735
  Missing Bugfix: 24913281  -> Patch 34330735
  Missing Bugfix: 20055551  -> Patch 34330735
  Missing Bugfix: 27212806  -> Patch 27212806
  Missing Bugfix: 28371189  -> Patch 28708563
  Missing Bugfix: 26957170  -> Patch 34330735
  Missing Bugfix: 28368196  -> Patch 34330735
  Missing Bugfix: 30153175  -> Patch 34330735
  Missing Bugfix: 29702340  -> Patch 34330735
  Missing Bugfix: 29997425  -> Patch 34330735
  Missing Bugfix: 26933408  -> Patch 26933408
  Missing Bugfix: 33505402  -> Patch 34330735
  Missing Bugfix: 31352853  -> Patch 34330735
  Missing Bugfix: 33960746  -> Patch 33960746
  Missing Bugfix: 34714760  -> Patch 34714760
The above list shows missing bugfixes for FMW - Oracle Common.
These results have been stored in the database.

===============================================================================
Oracle WebLogic Server (WLS)
===============================================================================
Now examining WLS.

Oracle Home: /u01/app/UAT/fs1/FMW_Home/wlserver_10.3.
Product version: 10.3.6.0.7.

+------------------------------------------------------------------------------------+
[WARNING] WLS 10.3.6.0.7 is no longer compatible with ETCC
  ****Upgrade Required****
Please upgrade to an WLS version listed in My Oracle Support Document 2877607.1.
+------------------------------------------------------------------------------------+

===============================================================================

Generating Patch Recommendation Summary.

===============================================================================
PATCH RECOMMENDATION SUMMARY
===============================================================================
One or more products have bugfixes missing.
The default patch recommendations to install these missing bugfixes are:

-------------------------------------------------------------------------------
Oracle Forms and Reports 10.1.2.3.0
-------------------------------------------------------------------------------
  Patch 32922089
    - Filename: p32922089_101232_LINUX.zip

  Patch 25342269
    - Filename: p25342269_101232_Generic.zip

  Patch 27491934
    - Filename: p27491934_101232_LINUX.zip


-------------------------------------------------------------------------------
Oracle Fusion Middleware (FMW) - Web Tier 11.1.1.9.0
-------------------------------------------------------------------------------
  Patch 22288381
    - Filename: p22288381_111190_Generic.zip

  Patch 35540062
    - Filename: p35540062_111190_Linux-x86-64.zip

  Patch 32287205 [IMPORTANT: Follow Note 2555355.1 before applying.]
    - Filename: p32287205_111190_Linux-x86-64.zip

  Patch 23716938
    - Filename: p23716938_111190_Generic.zip

  Patch 32928416
    - Filename: p32928416_111190_Linux-x86-64.zip

  Patch 33144848
    - Filename: p33144848_111190_Linux-x86-64.zip

  Patch 34067016
    - Filename: p34067016_11119210420OSS_Linux-x86-64.zip


-------------------------------------------------------------------------------
FMW - Web Tier 11.1.0.7.0
-------------------------------------------------------------------------------
  Patch 22290164
    - Filename: p22290164_111070_Linux-x86-64.zip


-------------------------------------------------------------------------------
Oracle Fusion Middleware (FMW) - Oracle Common 11.1.1.9.0
-------------------------------------------------------------------------------
  Patch 9905685
    - Filename: p9905685_111190_Generic.zip

  Patch 17428617
    - Filename: p17428617_111190_Generic.zip

  Patch 21366277
    - Filename: p21366277_111190_Generic.zip

  Patch 21628307
    - Filename: p21628307_111190_Generic.zip

  Patch 24606362
    - Filename: p24606362_111190_Generic.zip

  Patch 24843064
    - Filename: p24843064_111190_Generic.zip

  Patch 13544814
    - Filename: p13544814_111190_Generic.zip

  Patch 33974106
    - Filename: p33974106_111190_Generic.zip

  Patch 16089637
    - Filename: p16089637_111190_Generic.zip

  Patch 20141119
    - Filename: p20141119_111190_Generic.zip

  Patch 34330735
    - Filename: p34330735_111190_Generic.zip

  Patch 27212806
    - Filename: p27212806_111190_Generic.zip

  Patch 28708563
    - Filename: p28708563_111190_Generic.zip

  Patch 26933408
    - Filename: p26933408_111190_Generic.zip

  Patch 33960746
    - Filename: p33960746_111190_Generic.zip

  Patch 34714760
    - Filename: p34714760_111190_Generic.zip


Apply the required patches and rerun this script. 

+-----------------------------------------------------------------------------+
A consolidated zip file with the required application tier patches is
available on My Oracle Support via:

  Patch 36616672
    - EBS RELEASE 12.2 CONSOLIDATED FMW FIXES FOR JUL 2024

+-----------------------------------------------------------------------------+
[WARNING] Patch 33528262 SU Patch [HYG5]: WLS PSU 10.3.6.0.220118 is missing.
     Filename:  p33528262_R12_GENERIC.zip
 
This is the current recommended minimum WLS patch set.
As patch sets are not included in the consolidated zip file, you must obtain it
(or a later one, if available) from My Oracle Support and install it by
following its Readme.
After successful installation, rerun this script to check for any further
available fixes.
+-----------------------------------------------------------------------------+

See Doc ID 2877607.1 for any special instructions regarding these patches.
Footnotes in Doc ID 2877607.1 also apply to corresponding overlay patches.

Finished checking prerequisite patches for file edition: run.
Tue Jun 17 21:47:44 EAT 2025

Log file for this session: /u01/app/UAT/fs_ne/EBSapps/patch/etcc/log/checkMTpatch_301164.log

===============================================================================

 

Apply the required patches and rerun this script.

8.6       Apply MT ETCC patches

Follow patch recommendation summary and apply patches. Patches below are tab-formatted showing dependencies. All pre-requisite patches should be applied before a dependent patch.

8.6.1     Oracle Fusion Middleware (FMW) – Web Tier 11.1.1.9.0

[-]6880880 latest opatch 111000
[-]34251646
[-]34067016
 

Extract the latest OPatch

[applmgr@ebstest OPatch]$ . /u01/app/UAT/EBSapps.env patch

  E-Business Suite Environment Information
  ----------------------------------------
  RUN File System           : /u01/app/UAT/fs2/EBSapps/appl
  PATCH File System         : /u01/app/UAT/fs1/EBSapps/appl
  Non-Editioned File System : /u01/app/UAT/fs_ne


  DB Host: ebstest.finsys.co.ke  Service/SID: UAT


  Sourcing the PATCH File System ..
$ . $FMW_HOME/SetWebtier.env
$ cd $ORACLE_HOME
[applmgr@ebstest webtier]$ scp -r /u01/app/UAT/fs_ne/EBSapps/patch/OPatch .

 Patch 22288381
    - Filename: p22288381_111190_Generic.zip

  Patch 35540062
    - Filename: p35540062_111190_Linux-x86-64.zip

  Patch 32287205 [IMPORTANT: Follow Note 2555355.1 before applying.]
    - Filename: p32287205_111190_Linux-x86-64.zip

  Patch 23716938
    - Filename: p23716938_111190_Generic.zip

  Patch 32928416
    - Filename: p32928416_111190_Linux-x86-64.zip

  Patch 33144848
    - Filename: p33144848_111190_Linux-x86-64.zip

  Patch 34067016
    - Filename: p34067016_11119210420OSS_Linux-x86-64.zip
$ cd /u01/app/UAT/fs_ne/EBSapps/patch/etcc-bundle/LINUX_X86-64/webtier/11.1.1.9.0/22288381
applmgr@ebstest webtier]$ cd /u01/app/UAT/fs_ne/EBSapps/patch/etcc-bundle/LINUX_X86-64/webtier/11.1.1.9.0/22288381
[applmgr@ebstest 22288381]$ which opatch
/u01/app/UAT/fs1/FMW_Home/webtier/OPatch/opatch
[applmgr@ebstest 22288381]$ opatch apply

Oracle Interim Patch Installer version 1.0.0.0.64
Copyright (c) 2011 Oracle Corporation. All Rights Reserved..

Oracle recommends you to use the latest OPatch version
and read the OPatch documentation available in the OPatch/docs
directory for usage. For information about the latest OPatch and
other support-related issues, refer to document ID 293369.1
available on My Oracle Support (https://myoraclesupport.oracle.com)

Oracle Home           : /u01/app/UAT/fs1/FMW_Home/webtier
Oracle Home Inventory : /u01/app/UAT/fs1/FMW_Home/webtier/inventory
Central Inventory     : /u01/app/oraInventory
   from               : /etc/oraInst.loc
OUI location          : /u01/app/UAT/fs1/FMW_Home/webtier/oui
OUI shared library    : /u01/app/UAT/fs1/FMW_Home/webtier/oui/lib/linux64/liboraInstaller.so
Java location         : /u01/app/UAT/fs1/FMW_Home/webtier/jdk/jre/bin/java
Log file location     : /u01/app/UAT/fs1/FMW_Home/webtier/.patch_storage/<patch ID>/*.log

Creating log file "/u01/app/UAT/fs1/FMW_Home/webtier/.patch_storage/22288381/Apply_22288381_06-21-2025_21-17-19.log"

OPATCH_JAVA_ERROR=OUI Version: 11.1.0.11.0
OPATCH_JAVA_ERROR=OUI Version: 11.1.0.11.0
OPatch requires OUI 10.1 or earlier.
Cannot set up OUI inventory session.

ERROR: OPatch failed because of Inventory problem.
[applmgr@ebstest 22288381]$ /u01/app/UAT/fs1/FMW_Home/oracle_common/OPatch/opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/webtier
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/webtier/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/22288381_Jun_21_2025_21_24_44/apply2025-06-21_21-24-44PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '22288381' to OH '/u01/app/UAT/fs1/FMW_Home/webtier'
Verifying environment and performing prerequisite checks...

Conflicts/Supersets for each patch are:

Patch : 22288381

	Bug Superset of 20922780
	Super set bugs are:
	20922780
Interim patch 22288381 is a superset of the patch(es) [  20922780 ] in the Oracle Home
OPatch will roll back the subset patches and apply the given patch.
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y


Backing up files...
Rolling back interim patch '20922780' from OH '/u01/app/UAT/fs1/FMW_Home/webtier'

Patching component oracle.as.clone.ohs, 11.1.1.9.0...
Updating jar file "/u01/app/UAT/fs1/FMW_Home/webtier/clone/provision/ohscloning.jar" with "/u01/app/UAT/fs1/FMW_Home/webtier/.patch_storage/20922780_May_28_2015_05_58_51/files//clone/provision/ohscloning.jar/oracle/as/clone/ohs/constants/OHSComponentCloningConstants$WebGateInfo.class"
Updating jar file "/u01/app/UAT/fs1/FMW_Home/webtier/clone/provision/ohscloning.jar" with "/u01/app/UAT/fs1/FMW_Home/webtier/.patch_storage/20922780_May_28_2015_05_58_51/files//clone/provision/ohscloning.jar/oracle/as/clone/ohs/helper/MovePlanHelper.class"
Updating jar file "/u01/app/UAT/fs1/FMW_Home/webtier/clone/provision/ohscloning.jar" with "/u01/app/UAT/fs1/FMW_Home/webtier/.patch_storage/20922780_May_28_2015_05_58_51/files//clone/provision/ohscloning.jar/oracle/as/clone/ohs/helper/MovePlanHelper$MovePlanValidationHandler.class"
Updating jar file "/u01/app/UAT/fs1/FMW_Home/webtier/clone/provision/ohscloning.jar" with "/u01/app/UAT/fs1/FMW_Home/webtier/.patch_storage/20922780_May_28_2015_05_58_51/files//clone/provision/ohscloning.jar/oracle/as/clone/ohs/resources/OHSComponentCloningResources.class"
RollbackSession removing interim patch '20922780' from inventory


OPatch back to application of the patch '22288381' after auto-rollback.


Patching component oracle.as.clone.ohs, 11.1.1.9.0...

Verifying the update...
Patch 22288381 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/22288381_Jun_21_2025_21_24_44/apply2025-06-21_21-24-44PM_1.log

OPatch succeeded.
[applmgr@ebstest 22288381]$ cd ../35540062/
[applmgr@ebstest 35540062]$ /u01/app/UAT/fs1/FMW_Home/oracle_common/OPatch/opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/webtier
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/webtier/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/35540062_Jun_21_2025_21_34_03/apply2025-06-21_21-34-03PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '35540062' to OH '/u01/app/UAT/fs1/FMW_Home/webtier'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/webtier')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.ohs2, 11.1.1.9.0...

Verifying the update...
Patch 35540062 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/35540062_Jun_21_2025_21_34_03/apply2025-06-21_21-34-03PM_1.log

OPatch succeeded.
[applmgr@ebstest 35540062]$ cd ../32287205/
[applmgr@ebstest 32287205]$ /u01/app/UAT/fs1/FMW_Home/oracle_common/OPatch/opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/webtier
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/webtier/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/32287205_Jun_21_2025_21_36_13/apply2025-06-21_21-36-13PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '32287205' to OH '/u01/app/UAT/fs1/FMW_Home/webtier'
Verifying environment and performing prerequisite checks...
Patch 32287205: Optional component(s) missing : [ oracle.idm.oid, 11.1.1.9.0 ] 
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/webtier')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.ldap.rsf, 11.1.1.9.0...

Patching component oracle.rdbms.rsf, 11.1.0.7.0...

OPatch found the word "warning" in the stderr of the make command.
Please look at this stderr. You can re-run this make command.
Stderr output:
/u01/app/UAT/fs1/FMW_Home/webtier/lib/libztkg11.a(cc_memory.o): In function `krb5_mcc_generate_new':
cc_memory.c:(.text+0x18ab): warning: the use of `mktemp' is dangerous, better use `mkstemp' or `mkdtemp'



Verifying the update...
Patch 32287205 successfully applied
OPatch Session completed with warnings.
Log file location: /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/32287205_Jun_21_2025_21_36_13/apply2025-06-21_21-36-13PM_1.log

OPatch completed with warnings.
[applmgr@ebstest 35540062]$ cd ../32287205/
[applmgr@ebstest 32287205]$ /u01/app/UAT/fs1/FMW_Home/oracle_common/OPatch/opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/webtier
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/webtier/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/32287205_Jun_21_2025_21_36_13/apply2025-06-21_21-36-13PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '32287205' to OH '/u01/app/UAT/fs1/FMW_Home/webtier'
Verifying environment and performing prerequisite checks...
Patch 32287205: Optional component(s) missing : [ oracle.idm.oid, 11.1.1.9.0 ] 
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/webtier')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.ldap.rsf, 11.1.1.9.0...

Patching component oracle.rdbms.rsf, 11.1.0.7.0...

OPatch found the word "warning" in the stderr of the make command.
Please look at this stderr. You can re-run this make command.
Stderr output:
/u01/app/UAT/fs1/FMW_Home/webtier/lib/libztkg11.a(cc_memory.o): In function `krb5_mcc_generate_new':
cc_memory.c:(.text+0x18ab): warning: the use of `mktemp' is dangerous, better use `mkstemp' or `mkdtemp'



Verifying the update...
Patch 32287205 successfully applied
OPatch Session completed with warnings.
Log file location: /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/32287205_Jun_21_2025_21_36_13/apply2025-06-21_21-36-13PM_1.log

OPatch completed with warnings.
[applmgr@ebstest 32287205]$ cd ../23716938/
[applmgr@ebstest 23716938]$ /u01/app/UAT/fs1/FMW_Home/oracle_common/OPatch/opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/webtier
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/webtier/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/23716938_Jun_21_2025_21_37_33/apply2025-06-21_21-37-33PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '23716938' to OH '/u01/app/UAT/fs1/FMW_Home/webtier'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/webtier')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.opmn, 11.1.1.9.0...

Verifying the update...
Patch 23716938 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/23716938_Jun_21_2025_21_37_33/apply2025-06-21_21-37-33PM_1.log

OPatch succeeded.
[applmgr@ebstest 23716938]$ cd ../32928416/
[applmgr@ebstest 32928416]$ /u01/app/UAT/fs1/FMW_Home/oracle_common/OPatch/opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/webtier
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/webtier/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/32928416_Jun_21_2025_21_39_13/apply2025-06-21_21-39-13PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '32928416' to OH '/u01/app/UAT/fs1/FMW_Home/webtier'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/webtier')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.opmn, 11.1.1.9.0...

Verifying the update...
Patch 32928416 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/32928416_Jun_21_2025_21_39_13/apply2025-06-21_21-39-13PM_1.log

OPatch succeeded.
[applmgr@ebstest 32928416]$ cd ../33144848/
[applmgr@ebstest 33144848]$ /u01/app/UAT/fs1/FMW_Home/oracle_common/OPatch/opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/webtier
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/webtier/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/33144848_Jun_21_2025_21_40_10/apply2025-06-21_21-40-10PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '33144848' to OH '/u01/app/UAT/fs1/FMW_Home/webtier'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/webtier')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.wlsplugins, 11.1.1.9.0...

Verifying the update...
Patch 33144848 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/33144848_Jun_21_2025_21_40_10/apply2025-06-21_21-40-10PM_1.log

OPatch succeeded.
[applmgr@ebstest 33144848]$ cd ../34067016/
[applmgr@ebstest 34067016]$ /u01/app/UAT/fs1/FMW_Home/oracle_common/OPatch/opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/webtier
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/webtier/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/34067016_Jun_21_2025_21_41_17/apply2025-06-21_21-41-17PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '34067016' to OH '/u01/app/UAT/fs1/FMW_Home/webtier'
Verifying environment and performing prerequisite checks...
Patch 34067016: Optional component(s) missing : [ oracle.idm.oid, 11.1.1.9.0 ] 
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/webtier')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.ldap.rsf, 11.1.1.9.0...

Patching component oracle.rdbms.rsf, 11.1.0.7.0...

OPatch found the word "warning" in the stderr of the make command.
Please look at this stderr. You can re-run this make command.
Stderr output:
/u01/app/UAT/fs1/FMW_Home/webtier/lib/libztkg11.a(cc_memory.o): In function `krb5_mcc_generate_new':
cc_memory.c:(.text+0x18ab): warning: the use of `mktemp' is dangerous, better use `mkstemp' or `mkdtemp'



Verifying the update...
Patch 34067016 successfully applied
OPatch Session completed with warnings.
Log file location: /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/34067016_Jun_21_2025_21_41_17/apply2025-06-21_21-41-17PM_1.log

OPatch completed with warnings.
[applmgr@ebstest 11.1.0.7.0]$ cd 22290164/
[applmgr@ebstest 22290164]$ unzip p22290164_111070_Linux-x86-64.zip 
unzip:  cannot find p22290164_111070_Linux-x86-64.zip, p22290164_111070_Linux-x86-64.zip.zip or p22290164_111070_Linux-x86-64.zip.ZIP.
[applmgr@ebstest 22290164]$ /u01/app/UAT/fs1/FMW_Home/oracle_common/OPatch/opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/webtier
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/webtier/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/22290164_Jun_21_2025_21_43_37/apply2025-06-21_21-43-37PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '22290164' to OH '/u01/app/UAT/fs1/FMW_Home/webtier'
Verifying environment and performing prerequisite checks...
Patch 22290164: Optional component(s) missing : [ oracle.network.listener, 11.1.0.7.0 ] , [ oracle.network.cman, 11.1.0.7.0 ] , [ oracle.rdbms.rman, 11.1.0.7.0 ] , [ oracle.sdo.locator, 11.1.0.7.0 ] , [ oracle.sysman.console.db, 11.1.0.7.0 ] , [ oracle.sysman.repository.core, 10.2.0.4.1 ] , [ oracle.sysman.oms.core, 10.2.0.4.1 ] , [ oracle.sysman.console.db, 11.1.0.7.0 ] , [ oracle.rdbms.dbscripts, 11.1.0.7.0 ] , [ oracle.javavm.server, 11.1.0.7.0 ] , [ oracle.precomp.common, 11.1.0.7.0 ] , [ oracle.rdbms, 11.1.0.7.0 ] , [ oracle.oraolap, 11.1.0.7.0 ] , [ oracle.rdbms.dv.oc4j, 11.1.0.7.0 ] , [ oracle.rdbms.dv, 11.1.0.7.0 ] , [ oracle.ctx, 11.1.0.7.0 ] , [ oracle.rdbms.util, 11.1.0.7.0 ] , [ oracle.network.client, 11.1.0.7.0 ] , [ oracle.ordim.jai, 11.1.0.7.0 ] , [ oracle.ordim.client, 11.1.0.7.0 ] , [ oracle.ovm, 11.1.0.7.0 ] , [ oracle.ordim.server, 11.1.0.7.0 ] 
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/webtier')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.rdbms.rsf, 11.1.0.7.0...

Patching component oracle.network.rsf, 11.1.0.7.0...

Patching component oracle.xdk.parser.java, 11.1.0.7.0...

Patching component oracle.xdk, 11.1.0.7.0...

Patching component oracle.xdk.rsf, 11.1.0.7.0...

Patching component oracle.rdbms.rsf, 11.1.0.7.0...

Patching component oracle.network.rsf, 11.1.0.7.0...

Patching component oracle.dbjava.ic, 11.1.0.7.0...

Patching component oracle.dbjava.jdbc, 11.1.0.7.0...

OPatch found the word "warning" in the stderr of the make command.
Please look at this stderr. You can re-run this make command.
Stderr output:
/u01/app/UAT/fs1/FMW_Home/webtier/lib/libztkg11.a(cc_memory.o): In function `krb5_mcc_generate_new':
cc_memory.c:(.text+0x18ab): warning: the use of `mktemp' is dangerous, better use `mkstemp' or `mkdtemp'



OPatch found the word "warning" in the stderr of the make command.
Please look at this stderr. You can re-run this make command.
Stderr output:
/u01/app/UAT/fs1/FMW_Home/webtier/lib/libztkg11.a(cc_memory.o): In function `krb5_mcc_generate_new':
cc_memory.c:(.text+0x18ab): warning: the use of `mktemp' is dangerous, better use `mkstemp' or `mkdtemp'



Verifying the update...
Patch 22290164 successfully applied
OPatch Session completed with warnings.
Log file location: /u01/app/UAT/fs1/FMW_Home/webtier/cfgtoollogs/opatch/22290164_Jun_21_2025_21_43_37/apply2025-06-21_21-43-37PM_1.log

OPatch completed with warnings.
 

8.6.2     Oracle Fusion Middleware (FMW) – oracle_common 11.1.1.9.0

Extract the latest opatch

$ . ~/EBSapps.env patch
$ . $FMW_HOME/SetOracleCommon.env
$ cd $ORACLE_HOME
$ mv OPatch/ OPatch_bkp
$ cp ~/patches/p6880880_111000_Linux-x86-64.zip .
$ unzip p6880880_111000_Linux-x86-64.zip
$ rm -f p6880880_111000_Linux-x86-64.zip

Apply to patch fs Oracle Home

$ . ~/EBSapps.env patch
$ . $FMW_HOME/SetOracleCommon.env
#Verify that opatch is running from right OH
$ which opatch
$ echo $ORACLE_HOME
$ Patch 9905685
    - Filename: p9905685_111190_Generic.zip

  Patch 17428617
    - Filename: p17428617_111190_Generic.zip

  Patch 21366277
    - Filename: p21366277_111190_Generic.zip

  Patch 21628307
    - Filename: p21628307_111190_Generic.zip

  Patch 24606362
    - Filename: p24606362_111190_Generic.zip

  Patch 24843064
    - Filename: p24843064_111190_Generic.zip

  Patch 13544814
    - Filename: p13544814_111190_Generic.zip

  Patch 33974106
    - Filename: p33974106_111190_Generic.zip

  Patch 16089637
    - Filename: p16089637_111190_Generic.zip

  Patch 20141119
    - Filename: p20141119_111190_Generic.zip

  Patch 34330735
    - Filename: p34330735_111190_Generic.zip

  Patch 27212806
    - Filename: p27212806_111190_Generic.zip

  Patch 28708563
    - Filename: p28708563_111190_Generic.zip

  Patch 26933408
    - Filename: p26933408_111190_Generic.zip

  Patch 33960746
    - Filename: p33960746_111190_Generic.zip

  Patch 34714760
    - Filename: p34714760_111190_Generic.zip
[applmgr@ebstest 9905685]$ ls
oui  README.txt  sa
[applmgr@ebstest 9905685]$ cd oui/
[applmgr@ebstest oui]$ ls
etc  files  README.txt
[applmgr@ebstest oui]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/9905685_Jun_21_2025_21_52_56/apply2025-06-21_21-52-56PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '9905685' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/oracle_common')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.soa.mgmt, 11.1.1.9.0...

Verifying the update...
Patch 9905685 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/9905685_Jun_21_2025_21_52_56/apply2025-06-21_21-52-56PM_1.log

OPatch succeeded.
[applmgr@ebstest oui]$ cd ../../17428617/
[applmgr@ebstest 17428617]$ ls
etc  files  README.txt
[applmgr@ebstest 17428617]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/17428617_Jun_21_2025_21_54_11/apply2025-06-21_21-54-11PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '17428617' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/oracle_common')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.jrf.thirdparty.jee, 11.1.1.9.0...

Verifying the update...
Patch 17428617 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/17428617_Jun_21_2025_21_54_11/apply2025-06-21_21-54-11PM_1.log

OPatch succeeded.
[applmgr@ebstest 17428617]$ cd ../21366277/
[applmgr@ebstest 21366277]$ ls
etc  files  README.txt
[applmgr@ebstest 21366277]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/21366277_Jun_21_2025_21_55_06/apply2025-06-21_21-55-05PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '21366277' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y


Backing up files...

Patching component oracle.as.common.clone, 11.1.1.9.0...

Verifying the update...
Patch 21366277 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/21366277_Jun_21_2025_21_55_06/apply2025-06-21_21-55-05PM_1.log

OPatch succeeded.
[applmgr@ebstest 21366277]$ cd ../21628307/
[applmgr@ebstest 21628307]$ ls
etc  files  README.txt
[applmgr@ebstest 21628307]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/21628307_Jun_21_2025_21_56_01/apply2025-06-21_21-56-01PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '21628307' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y


Backing up files...

Patching component oracle.jrf.thirdparty.jee, 11.1.1.9.0...

Verifying the update...
Patch 21628307 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/21628307_Jun_21_2025_21_56_01/apply2025-06-21_21-56-01PM_1.log

OPatch succeeded.
[applmgr@ebstest 21628307]$ cd ../24843064/
[applmgr@ebstest 24843064]$ ls
oui  README.txt  sa
[applmgr@ebstest 24843064]$ cd oui/
[applmgr@ebstest oui]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/24843064_Jun_21_2025_21_57_50/apply2025-06-21_21-57-50PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '24843064' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/oracle_common')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.jrf.adfrt, 11.1.1.9.0...

Verifying the update...
Patch 24843064 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/24843064_Jun_21_2025_21_57_50/apply2025-06-21_21-57-50PM_1.log

OPatch succeeded.
[applmgr@ebstest oui]$ cd ../../13544814/
[applmgr@ebstest 13544814]$ ls
etc  files  README.txt
[applmgr@ebstest 13544814]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/13544814_Jun_21_2025_21_59_25/apply2025-06-21_21-59-25PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '13544814' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  YY



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/oracle_common')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.jrf.thirdparty.jee, 11.1.1.9.0...

Verifying the update...
Patch 13544814 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/13544814_Jun_21_2025_21_59_25/apply2025-06-21_21-59-25PM_1.log

OPatch succeeded.
[applmgr@ebstest 13544814]$ cd ../33974106/
[applmgr@ebstest 33974106]$ ls
etc  files  README.txt
[applmgr@ebstest 33974106]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/33974106_Jun_21_2025_22_00_52/apply2025-06-21_22-00-51PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '33974106' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/oracle_common')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.jrf.thirdparty.jee, 11.1.1.9.0...

Verifying the update...
Patch 33974106 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/33974106_Jun_21_2025_22_00_52/apply2025-06-21_22-00-51PM_1.log

OPatch succeeded.
[applmgr@ebstest 33974106]$ cd ../16089637/
[applmgr@ebstest 16089637]$ ls
etc  files  README.txt
[applmgr@ebstest 16089637]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/16089637_Jun_21_2025_22_01_49/apply2025-06-21_22-01-48PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '16089637' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/oracle_common')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.jrf.thirdparty.jee, 11.1.1.9.0...

Verifying the update...
Patch 16089637 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/16089637_Jun_21_2025_22_01_49/apply2025-06-21_22-01-48PM_1.log

OPatch succeeded.
[applmgr@ebstest 16089637]$ cd ../20141119/
[applmgr@ebstest 20141119]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/20141119_Jun_21_2025_22_02_37/apply2025-06-21_22-02-37PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '20141119' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y


Backing up files...

Patching component oracle.jrf.thirdparty.jee, 11.1.1.9.0...

Verifying the update...
Patch 20141119 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/20141119_Jun_21_2025_22_02_37/apply2025-06-21_22-02-37PM_1.log

OPatch succeeded.
[applmgr@ebstest 20141119]$ cd ../34330735/
[applmgr@ebstest 34330735]$ ls
oui  README.txt  sa
[applmgr@ebstest 34330735]$ cd oui/
[applmgr@ebstest oui]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/34330735_Jun_21_2025_22_03_51/apply2025-06-21_22-03-51PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '34330735' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/oracle_common')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.jrf.adfrt, 11.1.1.9.0...

Verifying the update...
Patch 34330735 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/34330735_Jun_21_2025_22_03_51/apply2025-06-21_22-03-51PM_1.log

OPatch succeeded.
[applmgr@ebstest oui]$ cd ../../27212806/
[applmgr@ebstest 27212806]$ ls
etc  files  README.txt
[applmgr@ebstest 27212806]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/27212806_Jun_21_2025_22_05_04/apply2025-06-21_22-05-04PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '27212806' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/oracle_common')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.as.common.clone, 11.1.1.9.0...

Verifying the update...
Patch 27212806 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/27212806_Jun_21_2025_22_05_04/apply2025-06-21_22-05-04PM_1.log

OPatch succeeded.
[applmgr@ebstest 27212806]$ cd ../28708563/
[applmgr@ebstest 28708563]$ ls
etc  files  README.txt
[applmgr@ebstest 28708563]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/28708563_Jun_21_2025_22_06_08/apply2025-06-21_22-06-08PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '28708563' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...

Conflicts/Supersets for each patch are:

Patch : 28708563

	Bug Superset of 20484781
	Super set bugs are:
	20484781
Interim patch 28708563 is a superset of the patch(es) [  20484781 ] in the Oracle Home
OPatch will roll back the subset patches and apply the given patch.
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y



Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/UAT/fs1/FMW_Home/oracle_common')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...
Rolling back interim patch '20484781' from OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'

Patching component oracle.as.common.clone, 11.1.1.9.0...
Updating jar file "/u01/app/UAT/fs1/FMW_Home/oracle_common/jlib/cloningclient.jar" with "/u01/app/UAT/fs1/FMW_Home/oracle_common/.patch_storage/20484781_Jul_12_2015_20_52_34/files//jlib/cloningclient.jar/oracle/as/clone/cloner/component/j2ee/util/DomainConfigScriptGenerator.class"
Updating jar file "/u01/app/UAT/fs1/FMW_Home/oracle_common/jlib/cloningclient.jar" with "/u01/app/UAT/fs1/FMW_Home/oracle_common/.patch_storage/20484781_Jul_12_2015_20_52_34/files//jlib/cloningclient.jar/oracle/as/clone/cloner/component/j2ee/util/J2EEGenericValidationUtil.class"
Updating jar file "/u01/app/UAT/fs1/FMW_Home/oracle_common/jlib/cloningclient.jar" with "/u01/app/UAT/fs1/FMW_Home/oracle_common/.patch_storage/20484781_Jul_12_2015_20_52_34/files//jlib/cloningclient.jar/oracle/as/clone/resources/CloningResources.class"
RollbackSession removing interim patch '20484781' from inventory


OPatch back to application of the patch '28708563' after auto-rollback.


Patching component oracle.as.common.clone, 11.1.1.9.0...

Verifying the update...
Patch 28708563 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/28708563_Jun_21_2025_22_06_08/apply2025-06-21_22-06-08PM_1.log

OPatch succeeded.
[applmgr@ebstest 28708563]$ cd ../26933408/
[applmgr@ebstest 26933408]$ ls
etc  files  README.txt
[applmgr@ebstest 26933408]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/26933408_Jun_21_2025_22_07_14/apply2025-06-21_22-07-14PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '26933408' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y


Backing up files...

Patching component oracle.jrf.thirdparty.jee, 11.1.1.9.0...

Verifying the update...
Patch 26933408 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/26933408_Jun_21_2025_22_07_14/apply2025-06-21_22-07-14PM_1.log

OPatch succeeded.
[applmgr@ebstest 26933408]$ cd ../33960746/
[applmgr@ebstest 33960746]$ ls
etc  files  README.txt
[applmgr@ebstest 33960746]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/33960746_Jun_21_2025_22_08_12/apply2025-06-21_22-08-12PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '33960746' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y


Backing up files...

Patching component oracle.sysman.common, 10.2.0.5.6...

Patching component oracle.sysman.oms.core, 11.1.1.9.0...

Patching component oracle.sysman.plugin.ai.main.oms, 11.1.1.9.0...

Verifying the update...
Patch 33960746 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/33960746_Jun_21_2025_22_08_12/apply2025-06-21_22-08-12PM_1.log

OPatch succeeded.
[applmgr@ebstest 33960746]$ cd ../34714760/
[applmgr@ebstest 34714760]$ ls
etc  files  README.txt
[applmgr@ebstest 34714760]$ opatch apply
Oracle Interim Patch Installer version 11.1.0.12.9
Copyright (c) 2025, Oracle Corporation.  All rights reserved.


Oracle Home       : /u01/app/UAT/fs1/FMW_Home/oracle_common
Central Inventory : /u01/app/oraInventory
   from           : /u01/app/UAT/fs1/FMW_Home/oracle_common/oraInst.loc
OPatch version    : 11.1.0.12.9
OUI version       : 11.1.0.11.0
Log file location : /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/34714760_Jun_21_2025_22_09_27/apply2025-06-21_22-09-27PM_1.log


OPatch detects the Middleware Home as "/u01/app/UAT/fs1/FMW_Home"

Applying interim patch '34714760' to OH '/u01/app/UAT/fs1/FMW_Home/oracle_common'
Verifying environment and performing prerequisite checks...
Patch 34714760: Optional component(s) missing : [ oracle.opss.client, 11.1.1.9.0 ] 
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y


Backing up files...

Patching component oracle.jrf.opss, 11.1.1.9.0...

Verifying the update...
Patch 34714760 successfully applied
Log file location: /u01/app/UAT/fs1/FMW_Home/oracle_common/cfgtoollogs/opatch/34714760_Jun_21_2025_22_09_27/apply2025-06-21_22-09-27PM_1.log

OPatch succeeded.

8.6.3     Oracle WebLogic Server (WLS) BSU Update

Please download from My Oracle Support and apply Patch 35710802 to update to the latest WLS 10.3.6 Patching tool codeline.

[applmgr@ebstest bsu]$ ./bsu_update.sh install
Installing Smart Update V4...
Updating bsu modules
Update was successful.

8.6.4     Oracle WebLogic Server (WLS) 10.3.6.0.231017

[applmgr@ebstest 10.3.6.0.231017]$ cd /u01/app/UAT/fs1/FMW_Home/utils/bsu
[applmgr@ebstest bsu]$ ls bsu_backup.sh bsu.jar bsu.sh bsu_update bsu_update.sh cache_dir p35710802_R12_GENERIC.zip patch-client.jar smartupdate.ico
[applmgr@ebstest bsu]$ unzip -o p35710802_R12_GENERIC.zip
Archive:  p35710802_R12_GENERIC.zip
 extracting: p35586779_1036_Generic.zip  
  inflating: Readme.txt  
[applmgr@ebstest bsu]$ bsu.sh -prod_dir=/u01/app/UAT/fs1/FMW_Home/wlserver_10.3 -status=applied -verbose -view
ProductName:       WebLogic Server
ProductVersion:    10.3 MP6
Components:        WebLogic Server/Core Application Server,WebLogic Server/Admi
                   nistration Console,WebLogic Server/Configuration Wizard and 
                   Upgrade Framework,WebLogic Server/Web 2.0 HTTP Pub-Sub Serve
                   r,WebLogic Server/WebLogic SCA,WebLogic Server/WebLogic JDBC
                    Drivers,WebLogic Server/Third Party JDBC Drivers,WebLogic S
                   erver/WebLogic Server Clients,WebLogic Server/WebLogic Web S
                   erver Plugins,WebLogic Server/UDDI and Xquery Support,WebLog
                   ic Server/Evaluation Database,WebLogic Server/Workshop Code 
                   Completion Support
BEAHome:           /u01/app/UAT/fs1/FMW_Home
ProductHome:       /u01/app/UAT/fs1/FMW_Home/wlserver_10.3
PatchSystemDir:    /u01/app/UAT/fs1/FMW_Home/utils/bsu
PatchDir:          /u01/app/UAT/fs1/FMW_Home/patch_wls1036
Profile:           Default
DownloadDir:       /u01/app/UAT/fs1/FMW_Home/utils/bsu/cache_dir
JavaVersion:       1.6.0_29
JavaVendor:        Sun


Patch ID:          32I2
PatchContainer:    32I2.jar
Checksum:          -1263129013
Severity:          optional
Category:          General
CR/BUG:            
Restart:           true
Description:       NEED JAVA MAILER API LIBRARY VERSION 1.4.3 IN FMW 11G PS5
NE
                   ED JAVA MAILER API LIBRARY VERSION 1.4.3 IN FMW 11G PS5

Patch ID:          YHJK
PatchContainer:    YHJK.jar
Checksum:          1500193567
Severity:          optional
Category:          Web App
CR/BUG:            
Restart:           true
Description:       RESPONSE GETTING APPENDED EVEN AFTER CLOSING OUTPUT STREAM 

                   RESPONSE GETTING APPENDED EVEN AFTER CLOSING OUTPUT STREAM 

                   
 Special Instruction for this patch:
======================
                   =============
To enable this feature, WebLogic Server needs 
                   to be started with the following java argument:
-Dweblogic.h
                   ttp.allowClosingServletOutputStream=true
The default value i
                   s "false"

Patch ID:          S9MN
PatchContainer:    S9MN.jar
Checksum:          -1162007757
Severity:          optional
Category:          
CR/BUG:            14272383
Restart:           true
Description:       Enhance ConfigurationManagerMBean to emit notifications on a
                   ny changes.
Enhance ConfigurationManagerMBean to emit notifi
                   cations on any changes.

Patch ID:          TTEM
PatchContainer:    TTEM.jar
Checksum:          -823861680
Severity:          optional
Category:          Installation
CR/BUG:            14621810
Restart:           true
Description:       Domain templates exclude the pending directory from the doma
                   ins.
Domain templates exclude the pending directory from the
                    domains.

Patch ID:          CIH8
PatchContainer:    CIH8.jar
Checksum:          -427120780
Severity:          optional
Category:          General
CR/BUG:            17431995,17495356
Restart:           true
Description:       TRACKING BUG FOR SMARTUPDATE PATCH OF MLR BUG 17431995
TRACK
                   ING BUG FOR SMARTUPDATE PATCH OF MLR BUG 17431995

Patch ID:          FCX7
PatchContainer:    FCX7.jar
Checksum:          1694447594
Severity:          optional
Category:          General
CR/BUG:            17572726
Restart:           true
Description:       WLS PATCH SET UPDATE 10.3.6.0.7 
WLS PATCH SET UPDATE 10.3.6
                   .0.7

Patch ID:          CW9T
PatchContainer:    CW9T.jar
Checksum:          -482906009
Severity:          optional
Category:          General
CR/BUG:            13337000
Restart:           true
Description:       10.3.6.0.7 Overlay: MAKE POOLCONNECTION.INIT() THROW EXCEPTI
                   ON WITH A CAUSE
Oracle WebLogic Sever overlay patch for 10.3
                   .6.0.7 which requires WLS10.3.6.0.7 PSU (Patch Number: 17572
                   726 , Patch ID :FCX7) in the environment

Patch ID:          2GYW
PatchContainer:    2GYW.jar
Checksum:          -358970655
Severity:          optional
Category:          Core
CR/BUG:            17319481
Restart:           true
Description:       10.3.6.0.7 Overlay: REL7 GA GSI: REHYDRATION FAILED DUE TO P
                   RODUCTMANAGEMENTSERVER FAILED TO START 
Oracle WebLogic Seve
                   r overlay patch for 10.3.6.0.7 which requires WLS 10.3.6.0.7
                    PSU (Patch Number: 17572726 , Patch ID :FCX7) in the enviro
                   nment

Patch ID:          7FC9
PatchContainer:    7FC9.jar
Checksum:          -916319769
Severity:          optional
Category:          General
CR/BUG:            17893334
Restart:           true
Description:       THE <TARGET> PATH IN PATCH-BACKUP.XML FILE DOES NOT CHANGE
T
                   HE <TARGET> PATH IN PATCH-BACKUP.XML FILE DOES NOT CHANGE

Patch ID:          Y5AP
PatchContainer:    Y5AP.jar
Checksum:          1372511509
Severity:          optional
Category:          General
CR/BUG:            19600486
Restart:           true
Description:       PASTECONFIG.SH FAILED AFTER ADDING SETMAXREQUESTPARAMTERCOUN
                   T() ATTRIBUTE 
PASTECONFIG.SH FAILED AFTER ADDING SETMAXREQU
                   ESTPARAMTERCOUNT() ATTRIBUTE

Patch ID:          S8H6
PatchContainer:    S8H6.jar
Checksum:          778859433
Severity:          optional
Category:          General
CR/BUG:            20474010
Restart:           true
Description:       SPURIOUS HARVESTING OF CONNECTION BY WLS POOL
SPURIOUS HARVE
                   STING OF CONNECTION BY WLS POOL

Patch ID:          1LRI
PatchContainer:    1LRI.jar
Checksum:          -233086655
Severity:          optional
Category:          General
CR/BUG:            19687084
Restart:           true
Description:       10.3.6.0.7 Overlay: WITH BLOCK='TRUE' ARGUMENT WLST STARTNOD
                   EMANAGER() COMMAND IS FAILING
Oracle WebLogic Sever overlay 
                   patch for 10.3.6.0.7 which requires WLS10.3.6.0.7 PSU (Patch
                    Number: 17572726 , Patch ID :FCX7) in the environment.

Patch ID:          VKXF
PatchContainer:    VKXF.jar
Checksum:          1897512623
Severity:          optional
Category:          Web App
CR/BUG:            11781879
Restart:           true
Description:       STRESS:FA:SCM ILLEGALSTATEEXCEPTION: HTTPSESSION IS INVALID

                   STRESS:FA:SCM ILLEGALSTATEEXCEPTION: HTTPSESSION IS INVALID

Patch ID:          BLTG
PatchContainer:    BLTG.jar
Checksum:          2018764438
Severity:          optional
Category:          Data Access
CR/BUG:            13729611
Restart:           true
Description:       10.3.6.0.7 Overlay: STATEMENT CACHE SETUP IMPROVEMENTS USING
                    WEBLOGIC CONSOLE
Oracle WebLogic Sever overlay patch for 10
                   .3.6.0.7 which requires WLS10.3.6.0.7 PSU (Patch Number : 17
                   572726 , Patch ID : FCX7) in the environment

Patch ID:          YVDZ
PatchContainer:    YVDZ.jar
Checksum:          836834364
Severity:          optional
Category:          Security
CR/BUG:            13964737
Restart:           true
Description:       12C DEMO CERTS NOT GENERATED
12C DEMO CERTS NOT GENERATED

Patch ID:          EG54
PatchContainer:    EG54.jar
Checksum:          1908783570
Severity:          optional
Category:          General
CR/BUG:            31090393
Restart:           true
Description:       OL8 12.2.1.4: EL7 COMPAT-LIBCAP NOT REQUIRED, EL7 LIBSTDC++ 
                   FOR LIBWLENV.SO ONLY
OL8 12.2.1.4: EL7 COMPAT-LIBCAP NOT REQ
                   UIRED, EL7 LIBSTDC++ FOR LIBWLENV.SO ONLY
[applmgr@ebstest bsu]$ bsu.sh -remove -patchlist=1LRI,2GYW,CW9T,VKXF,BLTG -prod_dir=/u01/app/UAT/fs1/FMW_Home/wlserver_10.3 -profile -verbose -log=/u01/patches/etcc/log/patchlog01.log
Checking for conflicts..
No conflict(s) detected

Starting removal of Patch ID: 1LRI
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/BUG19687084_103607.jar
Updating /u01/app/UAT/fs1/FMW_Home/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar
Old manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG13729611_103607.jar ../../../patch_jars/BUG11781879_103607.jar ../../../patch_jars/BUG19687084_103607.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG17319481_103607.jar ../../../patch_jars/BUG13337000_103607.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
New manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG13729611_103607.jar ../../../patch_jars/BUG11781879_103607.jar ../../../patch_jars/BUG19687084_103607.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG17319481_103607.jar ../../../patch_jars/BUG13337000_103607.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
Result: Success

Starting removal of Patch ID: 2GYW
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/BUG17319481_103607.jar
Updating /u01/app/UAT/fs1/FMW_Home/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar
Old manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG13729611_103607.jar ../../../patch_jars/BUG11781879_103607.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG17319481_103607.jar ../../../patch_jars/BUG13337000_103607.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
New manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG13729611_103607.jar ../../../patch_jars/BUG11781879_103607.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG17319481_103607.jar ../../../patch_jars/BUG13337000_103607.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
Result: Success

Starting removal of Patch ID: CW9T
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/BUG13337000_103607.jar
Updating /u01/app/UAT/fs1/FMW_Home/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar
Old manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG13729611_103607.jar ../../../patch_jars/BUG11781879_103607.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG13337000_103607.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
New manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG13729611_103607.jar ../../../patch_jars/BUG11781879_103607.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG13337000_103607.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
Result: Success

Starting removal of Patch ID: VKXF
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/BUG11781879_103607.jar
Updating /u01/app/UAT/fs1/FMW_Home/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar
Old manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG13729611_103607.jar ../../../patch_jars/BUG11781879_103607.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
New manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG13729611_103607.jar ../../../patch_jars/BUG11781879_103607.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
Result: Success

Starting removal of Patch ID: BLTG
Restoring /u01/app/UAT/fs1/FMW_Home/modules/com.bea.core.datasource6.binding_1.10.0.0.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/modules/com.bea.core.datasource_1.10.0.0.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/modules/com.bea.core.datasource6_1.10.0.0.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/BUG13729611_103607.jar
Updating /u01/app/UAT/fs1/FMW_Home/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar
Old manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG13729611_103607.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
New manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG13729611_103607.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
Result: Success
[applmgr@ebstest bsu]$ bsu.sh -remove -patchlist=VKXF,Y5AP,FCX7,YVDZ,YHJK -prod_dir=/u01/app/UAT/fs1/FMW_Home/wlserver_10.3 -profile -verbose -log=/u01/patches/etcc/log/patchlog02.log
Patch not installed: VKXF
Checking for conflicts..
No conflict(s) detected

Starting removal of Patch ID: Y5AP
Restoring /u01/app/UAT/fs1/FMW_Home/modules/com.oracle.cie.config-wls-schema_10.3.6.0.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Result: Success

Starting removal of Patch ID: FCX7
Removing /u01/app/UAT/fs1/FMW_Home/modules/com.bea.core.stax2_2.0.0.0_3-0-3.jar
Removing /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/wlt3client.jar
Removing /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/bugsfixed/WLS-PSU-bugsfixed.txt
Removing /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/bugsfixed/17572726-WLS-10.3.6.0.7_PSU_WebServices-ClientSide-Configuration-README.txt
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/common/wlst/modules/jython-modules.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/wlthint3client.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/common/bin/wlsifconfig.sh from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/modules/com.bea.core.utils.full_1.10.0.0.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/modules/com.bea.core.bea.opensaml_1.0.0.0_6-2-0-0.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/common/deployable-libraries/jsf-2.0.war from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/schema/weblogic-domain-binding.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/webserviceclient+ssl.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/wljmsclient.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/wlw-langx.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/wlsafclient.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/wlsaft3client.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/wseeclient.zip from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/wls-api.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/modules/com.bea.core.descriptor.wl.binding_1.4.0.0.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/jms-notran-adp.rar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/jms-xa-adp.rar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/jdbcdrivers.xml from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/wlclient.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/webserviceclient.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/wseeclient.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/modules/com.bea.core.utils_1.10.0.0.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/consoleapp/webapp/WEB-INF/lib/console.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/modules/com.bea.core.bea.opensaml2_1.0.0.0_6-2-0-0.jar from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/BUG17572726_103607.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/glassfish.jaxp_1.4.5.0.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar
Updating /u01/app/UAT/fs1/FMW_Home/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar
Old manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
New manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/BUG17572726_103607.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
Result: Success

Starting removal of Patch ID: YVDZ
Removing /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/CertGenInteropCAKey.der
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/CertGenCA.der from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/CertGenCAKey.der from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/cacerts from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Restoring /u01/app/UAT/fs1/FMW_Home/wlserver_10.3/server/lib/DemoTrust.jks from /u01/app/UAT/fs1/FMW_Home/patch_wls1036/backup/backup.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/BUG13964737_1036.jar
Updating /u01/app/UAT/fs1/FMW_Home/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar
Old manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
New manifest value: Class-Path= ../../../patch_jars/BUG13964737_1036.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
Result: Success

Starting removal of Patch ID: YHJK
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/BUG13845626_1036.jar
Updating /u01/app/UAT/fs1/FMW_Home/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar
Old manifest value: Class-Path= ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
New manifest value: Class-Path= ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar ../../../patch_jars/BUG13845626_1036.jar
Result: Success
[applmgr@ebstest bsu]$ bsu.sh -install -patchlist=E7HI -prod_dir=/u01/app/UAT/fs1/FMW_Home/wlserver_10.3
Checking for conflicts..
No conflict(s) detected

Installing Patch ID: E7HI..
Result: Success
[applmgr@ebstest bsu]$ bsu.sh -remove -patchlist=CIH8 -prod_dir=/u01/app/UAT/fs1/FMW_Home/wlserver_10.3 -profile -verbose -log=/u01/patches/etcc/log/patchlog03.log
Checking for conflicts..
No conflict(s) detected

Starting removal of Patch ID: CIH8
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/AppsAdapter.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/bpm-infra.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/DBAdapter.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/dbws.jar
Removing /u01/app/UAT/fs1/FMW_Home/patch_wls1036/patch_jars/jca-binding-api.jar
Updating /u01/app/UAT/fs1/FMW_Home/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar
Old manifest value: Class-Path= ../../../patch_jars/BUG35586779_10360231017.jar ../../../patch_jars/com.bea.core.apache.commons.fileupload_1.0.0.0_1-3-1.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/glassfish.jaxws.rt_1.4.0.0_2-1-5.jar ../../../patch_jars/glassfish.jaxws.saaj.impl_1.0.0.0_2-1-5.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar
New manifest value: Class-Path= ../../../patch_jars/BUG35586779_10360231017.jar ../../../patch_jars/com.bea.core.apache.commons.fileupload_1.0.0.0_1-3-1.jar ../../../patch_jars/com.bea.core.stax2_2.0.0.0_3-0-3.jar ../../../patch_jars/glassfish.jaxb_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar ../../../patch_jars/glassfish.jaxp_1.4.5.0.jar ../../../patch_jars/glassfish.jaxws.mimepull_1.1.0.0_1-3-8.jar ../../../patch_jars/glassfish.jaxws.rt_1.4.0.0_2-1-5.jar ../../../patch_jars/glassfish.jaxws.saaj.impl_1.0.0.0_2-1-5.jar ../../../patch_jars/BUG20474010_1036.jar ../../../patch_jars/AppsAdapter.jar ../../../patch_jars/bpm-infra.jar ../../../patch_jars/DBAdapter.jar ../../../patch_jars/dbws.jar ../../../patch_jars/jca-binding-api.jar ../../../patch_jars/com.bea.core.management.core_2.9.0.1.jar ../../../patch_jars/BUG14272383_1036.jar
Result: Success
[oracle@ebstest bsu]$ bsu.sh -install -patchlist=7BIA,7FC9,32I2,DI8E,ENUU,KMHV,S8H6,S9MN,TTEM,WY44 -prod_dir=/u01/app/FBS/fs2/FMW_Home/wlserver_10.3 Patch already installed: 7FC9 Patch already installed: 32I2 Patch already installed: S8H6 in profile: Default Patch already installed: S9MN in profile: Default Patch already installed: TTEM Checking for conflicts.. No conflict(s) detected Installing Patch ID: 7BIA. Result: Success Installing Patch ID: DI8E. Result: Success Installing Patch ID: ENUU. Result: Success Installing Patch ID: KMHV.. Result: Success Installing Patch ID: WY44. Result: Success 

8.6.5     Oracle Forms and Reports 10.1.2.3.0

$ [applmgr@fbsebs ~]$ . EBSapps.env patch
 
  E-Business Suite Environment Information
  ----------------------------------------
  RUN File System           : /u01/app/FBS/fs1/EBSapps/appl
  PATCH File System         : /u01/app/FBS/fs2/EBSapps/appl
  Non-Editioned File System : /u01/app/FBS/fs_ne
 
 
  DB Host: fbstest.finsys.co.ke Service/SID: FBS
 
 
  Sourcing the PATCH File System ...

 

Set Path to OPatch



[applmgr@fbsebs ~]$ export PATH=$ORACLE_HOME/OPatch:$PATH
  Patch 32922089
    - Filename: p32922089_101232_LINUX.zip

  Patch 25342269
    - Filename: p25342269_101232_Generic.zip

  Patch 27491934
    - Filename: p27491934_101232_LINUX.zip
[applmgr@fbsebs patch]$ cd 32922089
[applmgr@fbsebs 32922089]$ opatch apply
[applmgr@ebstest 10.1.2.3.0]$ cd 32922089/
[applmgr@ebstest 32922089]$ ls
etc  files  README.txt
[applmgr@ebstest 32922089]$ opatch apply

Oracle Interim Patch Installer version 1.0.0.0.64
Copyright (c) 2011 Oracle Corporation. All Rights Reserved..

Oracle recommends you to use the latest OPatch version
and read the OPatch documentation available in the OPatch/docs
directory for usage. For information about the latest OPatch and
other support-related issues, refer to document ID 293369.1
available on My Oracle Support (https://myoraclesupport.oracle.com)

Oracle Home           : /u01/app/UAT/fs2/EBSapps/10.1.2
Oracle Home Inventory : /u01/app/UAT/fs2/EBSapps/10.1.2/inventory
Central Inventory     : /u01/app/oraInventory
   from               : /etc/oraInst.loc
OUI location          : /u01/app/UAT/fs2/EBSapps/10.1.2/oui
OUI shared library    : /u01/app/UAT/fs2/EBSapps/10.1.2/oui/lib/linux/liboraInstaller.so
Java location         : /u01/app/UAT/fs2/EBSapps/10.1.2/jdk/jre/bin/java
Log file location     : /u01/app/UAT/fs2/EBSapps/10.1.2/.patch_storage/<patch ID>/*.log

Creating log file "/u01/app/UAT/fs2/EBSapps/10.1.2/.patch_storage/32922089/Apply_32922089_06-24-2025_10-27-23.log"

Invoking fuser to check for active processes.


Patch "32922089" overlays " 14825718 ". Conflict check between them is skipped.


Subset patches:  32922089, 

The fixes for Patch 32922089,  are included in the patch currently
being installed (32922089).  OPatch will roll back the subset patch(es) and
install the new patch (32922089).


Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y
Oracle Configuration Manager has been installed but not configured. OCM enables
Oracle to provide superior, proactive support for our customers. Oracle
strongly recommends customers configure OCM. To complete the configuration of
OCM, refer to the OCM Installation and Administration Guide
(http://www.oracle.com/technology/documentation/ocm.html).
Backing up comps.xml ...

OPatch detected non-cluster Oracle Home from the inventory and will patch the local system only.


Please shut down Oracle instances running out of this ORACLE_HOME
(Oracle Home = /u01/app/UAT/fs2/EBSapps/10.1.2)
Is this system ready for updating?
Please respond Y|N > 
Y
Rolling back patch 32922089...

Creating log file "/u01/app/UAT/fs2/EBSapps/10.1.2/.patch_storage/32922089/RollBack_32922089_06-24-2025_10-27-41.log"

Rolling back with all-node mode.
OPatch detected non-cluster Oracle Home from the inventory and will patch the local system only.

Oracle instances have been shut down, proceeding with auto-rollback.

Removing patch 32922089...

Restoring archive files...

Restoring copied files...

Running make for target  sharedlibs.

Running make for target  sharedlib.

Running make for target  install.


Updating inventory...

Back to applying patch 32922089...

Backing up 2nd copy of comps.xml ...

Applying patch 32922089...

Patching archive files...

Patching copy files...

Running make for target sharedlibs.

Running make for target sharedlib.

Running make for target install.



Inventory is good and does not have any dangling patches.


Updating inventory...

Verifying patch...
Backing up comps.xml ...


OPatch succeeded.
[applmgr@ebstest 32922089]$ cd ../25342269/
[applmgr@ebstest 25342269]$ opatch apply

Oracle Interim Patch Installer version 1.0.0.0.64
Copyright (c) 2011 Oracle Corporation. All Rights Reserved..

Oracle recommends you to use the latest OPatch version
and read the OPatch documentation available in the OPatch/docs
directory for usage. For information about the latest OPatch and
other support-related issues, refer to document ID 293369.1
available on My Oracle Support (https://myoraclesupport.oracle.com)

Oracle Home           : /u01/app/UAT/fs2/EBSapps/10.1.2
Oracle Home Inventory : /u01/app/UAT/fs2/EBSapps/10.1.2/inventory
Central Inventory     : /u01/app/oraInventory
   from               : /etc/oraInst.loc
OUI location          : /u01/app/UAT/fs2/EBSapps/10.1.2/oui
OUI shared library    : /u01/app/UAT/fs2/EBSapps/10.1.2/oui/lib/linux/liboraInstaller.so
Java location         : /u01/app/UAT/fs2/EBSapps/10.1.2/jdk/jre/bin/java
Log file location     : /u01/app/UAT/fs2/EBSapps/10.1.2/.patch_storage/<patch ID>/*.log

Creating log file "/u01/app/UAT/fs2/EBSapps/10.1.2/.patch_storage/25342269/Apply_25342269_06-24-2025_10-29-27.log"

Invoking fuser to check for active processes.


Patch "25342269" overlays " 14825718 ". Conflict check between them is skipped.

Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y
Oracle Configuration Manager has been installed but not configured. OCM enables
Oracle to provide superior, proactive support for our customers. Oracle
strongly recommends customers configure OCM. To complete the configuration of
OCM, refer to the OCM Installation and Administration Guide
(http://www.oracle.com/technology/documentation/ocm.html).
Backing up comps.xml ...

OPatch detected non-cluster Oracle Home from the inventory and will patch the local system only.


Please shut down Oracle instances running out of this ORACLE_HOME
(Oracle Home = /u01/app/UAT/fs2/EBSapps/10.1.2)
Is this system ready for updating?
Please respond Y|N > 
Y
Applying patch 25342269...

Patching copy files...



Inventory is good and does not have any dangling patches.


Updating inventory...

Verifying patch...
Backing up comps.xml ...


OPatch succeeded.
[applmgr@ebstest 25342269]$ cd ../27491934/
[applmgr@ebstest 27491934]$ opatch apply

Oracle Interim Patch Installer version 1.0.0.0.64
Copyright (c) 2011 Oracle Corporation. All Rights Reserved..

Oracle recommends you to use the latest OPatch version
and read the OPatch documentation available in the OPatch/docs
directory for usage. For information about the latest OPatch and
other support-related issues, refer to document ID 293369.1
available on My Oracle Support (https://myoraclesupport.oracle.com)

Oracle Home           : /u01/app/UAT/fs2/EBSapps/10.1.2
Oracle Home Inventory : /u01/app/UAT/fs2/EBSapps/10.1.2/inventory
Central Inventory     : /u01/app/oraInventory
   from               : /etc/oraInst.loc
OUI location          : /u01/app/UAT/fs2/EBSapps/10.1.2/oui
OUI shared library    : /u01/app/UAT/fs2/EBSapps/10.1.2/oui/lib/linux/liboraInstaller.so
Java location         : /u01/app/UAT/fs2/EBSapps/10.1.2/jdk/jre/bin/java
Log file location     : /u01/app/UAT/fs2/EBSapps/10.1.2/.patch_storage/<patch ID>/*.log

Creating log file "/u01/app/UAT/fs2/EBSapps/10.1.2/.patch_storage/27491934/Apply_27491934_06-24-2025_10-30-39.log"

Invoking fuser to check for active processes.


Patch "27491934" overlays " 14825718 ". Conflict check between them is skipped.

Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
Visit http://www.oracle.com/support/policies.html for details.
Email address/User Name: 

You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:  Y
Oracle Configuration Manager has been installed but not configured. OCM enables
Oracle to provide superior, proactive support for our customers. Oracle
strongly recommends customers configure OCM. To complete the configuration of
OCM, refer to the OCM Installation and Administration Guide
(http://www.oracle.com/technology/documentation/ocm.html).
Backing up comps.xml ...

OPatch detected non-cluster Oracle Home from the inventory and will patch the local system only.


Please shut down Oracle instances running out of this ORACLE_HOME
(Oracle Home = /u01/app/UAT/fs2/EBSapps/10.1.2)
Is this system ready for updating?
Please respond Y|N > 
Y
Applying patch 27491934...

Patching archive files...

Running make for target sharedlibs.



Inventory is good and does not have any dangling patches.


Updating inventory...

Verifying patch...
Backing up comps.xml ...


OPatch succeeded.

8.6.6     Re-run ETCC report to confirm that now all required patches present.

Apply patch environment as all above patches were installed to patch fs.

[oracle@apps ETCC]$ . ~/EBSapps.env patch
 ./checkMTpatch.sh

All required one-offs are confirmed as present.

8.7       Apply Consolidated Seed Table Upgrade

This step is applicable only for new installation customers and customers upgrading from Oracle E-Business Suite Release 12.2.2 to Release 12.2.12. Skipping this step as we have 12.2.11 installation.

Patch 34754463:12.2.0 (CUP15) or earlier Consolidated Upgrade Patches:

8.8       Apply the Latest AD and TXK Delta RUPS

Reference:

Applying the Latest AD and TXK Release Update Packs to Oracle E-Business Suite Release 12.2 (Doc ID 1617461.1)

8.8.1     Patch research

You can refer to the following post to check if a EBS patch is applied.

[-]36119925 (R12.AD.C.Delta.16)
 
[-]36117775 (R12.TXK.C.Delta.16)
 

8.8.2     Pre-steps

Execute adgrants script by following the instructions in the readme of Patch 36119925:

1. Create $ORACLE_HOME/appsutil/admin on the database server.

2. Compare the version of adgrants.sql(UNIX) in $APPL_TOP/admin to that in patch directory.

$ grep '$Header' $ORACLE_HOME/appsutil/admin/adgrants.sql
 
        REM $Header: adgrants.sql 120.67.12020000.60 2018/04/26 02:32:13 jwsmith ship $
 
$ grep '$Header' /stage/patches/EBS12.2/ADTKX/30628681/admin/adgrants.sql
 
        REM $Header: adgrants.sql 120.67.12020000.121 2022/09/14 18:39:52 jwsmith ship $
 

3. Copy the higher version of adgrants.sql (UNIX) to $ORACLE_HOME/appsutil/admin.

$ cp -iv /stage/patches/EBS12.2/ADTKX/36119925/admin/adgrants.sql /u01/install/APPS/19c/appsutil/admin
 

4. Set the environment to point to ORACLE_HOME on the database server.

$ . ~/FBS_demo.env
 

For a multitenant database source a CDB environment file and set ORACLE_PDB_SID variable

$ . ~/CDBVIS_demo.env
$ export ORACLE_PDB_SID=FBS
 

5. Use SQL*Plus to run the script:

$ sqlplus /nolog
SQL&gt; @$ORACLE_HOME/appsutil/admin/adgrants.sql APPS
 

Got warnings:

2019/08/27 07:28:14         453 ad.plsql.ad_zd_sys.GIVE_PRIVILEGE          WARNING
ORA-00942: table or view does not exist, SQL: grant SELECT on "DBMS_UPG_STATUS$" to "APPS"
 
2019/08/27 07:28:14         453 ad.plsql.ad_zd_sys.GIVE_PRIVILEGE          WARNING
ORA-00942: table or view does not exist, SQL: grant SELECT on "DBMS_UPG_STATUS$" to "SYSTEM" with grant option
 
2019/08/27 07:28:15         453 ad.plsql.ad_zd_sys.GIVE_PRIVILEGE          WARNING
ORA-04042: procedure, function, package, or package body does not exist, SQL: grant EXECUTE on 
"DBMS_SCHEMA_COPY" to "APPS"
 
2019/08/27 07:28:15         453 ad.plsql.ad_zd_sys.GIVE_PRIVILEGE          WARNING
ORA-04042: procedure, function, package, or package body does not exist, SQL: grant EXECUTE on 
"DBMS_SCHEMA_COPY" to "SYSTEM" with grant option
 
2019/08/27 07:28:15         453 ad.plsql.ad_zd_sys.GIVE_PRIVILEGE          WARNING
ORA-00942: table or view does not exist, SQL: grant WRITE on "DIRECTORY FND_DIAG_DIR" to "APPS"
 
2019/08/27 07:28:15         453 ad.plsql.ad_zd_sys.GIVE_PRIVILEGE          WARNING
ORA-00942: table or view does not exist, SQL: grant READ on "DIRECTORY FND_DIAG_DIR" to "APPS"
 

Solution:

Per Doc ID 2507343.1 those messages can be ignored.

8.8.3     Apply patches

 

read -s appspass
read -s systempass
read -s wlspass
 
. ~/EBSapps.env run
echo $appspass|adop -status -detail
 

Apply R12.AD.C.Delta.16 along with NLS and critical AD patches without “merge=yes”  (it will fail if you use merge option

adop phase=apply patches=36119925 hotpatch=yes
 

Apply R12.TXK.C.Delta.14 along with NLS and critical TXK patches without “merge=yes”  (it will fail if you use merge option

adop phase=apply patches=36117775 hotpatch=yes 
 

8.8.4     Update Database Tier to Latest Code

Will perform that step after all EBS patches are applied and fs cutover completed.

8.9       Apply Oracle E-Business Suite 12.2.X Release Update Pack

Finally after applying all pre-requisite patches upgrade to 12.2.12 can be performed. For our instance Path B — Existing Customers (Release 12.2.11) should be followed.

8.9.1     Apply patches with adop

{ echo $appspass; echo $systempass; echo $wlspass; }|adop phase=apply patches=33527700 patchtop=
/stage/patches/EBS12212_upgrade workers=8

8.9.2     Apply Oracle E-Business Suite Release 12.2.12 Online Help

{ echo $appspass; echo $systempass; echo $wlspass; }|adop phase=apply patches=33527707 patchtop=
/stage/patches/Online_help_12212 workers=4
 

Check logfiles for errors

adopscanlog -latest=yes
egrep -i "error|warning|fail|ora-|ac-|rc-" /u01/install/APPS/fs_ne/EBSapps/log/adop
/68/20190827_090009/apply/apps/28840850/log/[adop_log_file].log
 

8.9.3     Finish adop patching cycle

$ { echo $appspass; echo $systempass; echo $wlspass; }| adop phase=finalize
$ { echo $appspass; echo $systempass; echo $wlspass; }| adop phase=cutover
$ . ~/EBSapps.env run
$  { echo $appspass; echo $systempass; echo $wlspass; }|adop phase=cleanup
$  { echo $appspass; echo $systempass; echo $wlspass; }|adop phase=fs_clone
 

8.10      Post-steps

Compile invalid objects

$ORACLE_HOME/perl/bin/perl $ORACLE_HOME/rdbms/admin/catcon.pl --n 1 --e -l /tmp 
--b utlrp --d $ORACLE_HOME/rdbms/admin utlrp.sql

8.10.1                             Verify security configurations (required)

The administrator must log in to Oracle E-Business Suite using the local login page (http(s)://[host]:[port]/OA_HTML/AppsLocalLogin.jsp) to navigate to the console and unlock the system.

8.10.2                             Update Database Tier to Latest Code

1. Execute the admkappsutil.pl utility to create the appsutil.zip file in $INST_TOP/admin/out.

$ perl $AD_TOP/bin/admkappsutil.pl
 

2. On the database tier (as the ORACLE user):

Source the environment for ORACLE_HOME.

$ cd $ORACLE_HOME
$ . $ORACLE_HOME/$CONTEXT_NAME.env
 

3. Uncompress appsutil.zip, under $ORACLE_HOME.

$ cd $ORACLE_HOME
$ unzip -o appsutil.zip
 

4. Run AutoConfig on $ORACLE_HOME.

$ORACLE_HOME/appsutil/scripts/$CONTEXT_NAME/adautocfg.sh
 
$ egrep -i “error|warning|fail|ora-|ac-|rc-” /u01/install/APPS/12.1.0/appsutil/log
/FBS_apps/10121547/adconfig.log
 

5. Run AutoConfig on the run file system. Run AutoConfig on all application tier nodes (as the APPLMGR user) by executing the applicable command:

$ sh $INST_TOP/admin/scripts/adautocfg.sh
 

8.11      Healthcheck

Restart application tier services and verify that following checks are passed:

– EBS login works.

– Forms open

– Number of target and actual concurrent processes are equal.

– Test concurrent requests successfully completed. Example of such requests: “CP PLSQL Regression Test”, “Active Users”

– Other components depending on instance-specific configuration. For example: workflow mailer.


References:

  • Oracle E-Business Suite Release 12.2: Consolidated List of Oracle Fusion Middleware Patches and Technology Bug Fixes (MOS Note 2877607.1)

  • No comments:

    Post a Comment