Tag Archives: patch
Patch Set Update: Hyperion Financial Management 11.1.2.4.102
|
|||||
|
|||||
This PSU can be applied to Hyperion Financial Management (HFM):
Prerequisites for this HFM patch includes:
For product documentation, including HFM Administrator's Guide and HFM User's Guide, visit:
Supported Platforms The HFM Patch 21909692 is available for MS Windows and Linux only. Readme File
|
|||||
|
|||||
|
|||||
Share your experience about installing this patch ...
In the MOS | Patches & Updates screen for HFM Patch 21909692, click on the "Start a Discussion" and submit your review. The patch install reviews and other patch related information is available within the My Oracle Support Communities. Visit the Oracle Hyperion EPM sub-space: Questions specific to Hyperion Financial Management ... The My Oracle Support Community "HFM" is an ideal place to seek & find product specific answers: Hyperion Financial Management (HFM)
|
|||||
To locate the latest Patch Sets and Patch Set Updates for the EPM products visit the My Oracle Support (MOS) Knowledge Article:
|
Apply patches
You can apply patches for OBIEE by following these steps.
- download the patches at www.oracle.com
- create a temporary directory. For example;
mkdir /Patches
- go to the directory
cd /Patches/
- copy the patches to this directory
- unzip the downloaded files (this can take a while)
unzip -q '*.zip'
- add the path to OPatch to the PATH directory
ORACLE_HOME=/u01/app/oracle/fmw/Oracle_BI1 export ORACLE_HOME PATH=$PATH:$ORACLE_HOME/OPatch export PATH
- run the stop commands
- for each patch, change the directory to the directory with name = [patchnumber]
- apply the patch for each patch seperately (answer Y on any question proceed?)
opatch apply
- verify if all patches are installed
opatch lsinventory
- run the start commands
OBIEE is patched now!
Het bericht Apply patches verscheen eerst op OBIEE 24/7 | Oracle Business Intelligence.
Can we apply the latest OS/security patches to the exalytics server ?
Que). Can we apply the latest OS/security patches to the exalytics server?
Ans) Yes we can apply the latest OS/Security patches provided that there is no change in the Kernel Version.As per the product management team the Kernel version must not be changed.
Patch OBIEE the quicker way – with OPatch napply
Since 2012, Oracle’s patching strategy for OBIEE has been Bundle Patches released approximately once a month. These bundle patches are usually cumulative ones, applied on top of the .0 version of the product. Patching is done through Oracle’s standard OPatch
tool, which manages the application of patches along with an inventory of them and rollback if necessary.
I’ve previously written about the overall patching process here. OPatch is part and parcel of an OBIEE sysadmin’s life, so I wanted to share this short article to show the quicker way to apply the PSUs. It uses a more direct way than the patch documentation describes, taking advantage of the napply
option of OPatch (documented here). By using this option OPatch
will apply all listed patches in one go, rather than one at a time. As well as this, we can use the silent
flag to stop OPatch
from prompting to apply each patch in turn.
- Download the necessary patches – for 11.1.1.7.1 this is 16569379 and 16556157. In a server environment you can use wget to download the patches as detailed here.
- Validate the checksums for the downloaded files, to make sure they didn’t get corrupted during download. Use the Digest link when downloading to view the checksums. For example, the Linux x86-64 checksums are :
p16556157_111170_Linux-x86-64.zip 2673750617 bytes MD5 D3DDDEC4CB189A53B2681BA6522A0035 p16569379_111170_Linux-x86-64.zip 93617 bytes MD5 2BC0E8B903A10311C5CBE6F0D4871E31
- Unzip the patches. Within the main patch (16556157) there are a series of further zip archives – unzip these too
- Put all the patch folders in a single folder, so it looks something like this:
- Take backups, as described in the patch documentation.
- Set your environment variables, setting
PATCH_FOLDER
to the folder you unzipped the patches to in step 4 above, andORACLE_HOME
to yourFMW_HOME/Oracle_BI1
folder- Windows:
set PATCH_FOLDER=Y:\installers\OBI\11.1.1.7\win-x86-64_11.1.1.7.1 set ORACLE_HOME=c:\oracle\middleware\Oracle_BI1 set JAVA_HOME=%ORACLE_HOME%\jdk set PATH=%ORACLE_HOME%\OPatch;%JAVA_HOME%\bin;%ORACLE_HOME\bin%;%PATH%
- Linux:
export PATCH_FOLDER=/mnt/hgfs/installers/OBI/11.1.1.7/linux-x86-64_11.1.1.7.1 export ORACLE_HOME=/home/oracle/obiee/Oracle_BI1 export JAVA_HOME=$ORACLE_HOME/jdk export PATH=$ORACLE_HOME/OPatch:$JAVA_HOME/bin:$ORACLE_HOME/bin:$PATH
- Windows:
- Shut down OPMN, the Managed Server and the Admin Server
- Apply all the patches in one go, with no prompting:
- Windows:
opatch napply -silent %PATCH_FOLDER% -id 16453010,16842070,16849017,16850553,16869578,16916026,16569379
- Linux:
opatch napply -silent $PATCH_FOLDER -id 16453010,16842070,16849017,16850553,16869578,16916026,16569379
- Windows:
- Validate that they’ve been applied – the following should list all seven patches plus the bugs they fix:
opatch lsinventory
- Per the instructions in the README.html for patch
16453010
for post-patch actions:- Windows:
del
%ORACLE_HOME%\bifoundation\web\catalogmanager\configuration\org.eclipse.osgi
copy %ORACLE_HOME%\clients\bipublisher\repository\Tools\BIPublisherDesktop*.exe %ORACLE_HOME%\..\user_projects\domains\bifoundation_domain\config\bipublisher\repository\Tools copy %ORACLE_HOME%\clients\bipublisher\repository\Admin\DataSource\msmdacc64.dll %ORACLE_HOME%\..\user_projects\domains\bifoundation_domain\config\bipublisher\repository\Admin\DataSource for /d /r %ORACLE_HOME%\..\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\bipublisher_11.1.1 %d in (jsp_servlet) do @if exist "%d" rd /s/q "%d"del
%ORACLE_HOME%\
bifoundation\web\catalogmanager\configuration\org.eclipse.equinox.app - Linux:
rm -rv $ORACLE_HOME/bifoundation/web/catalogmanager/configuration/org.eclipse.osgi rm -rv
$ORACLE_HOME/
bifoundation/web/catalogmanager/configuration/org.eclipse.equinox.app cp $ORACLE_HOME/clients/bipublisher/repository/Tools/BIPublisherDesktop*.exe $ORACLE_HOME/../user_projects/domains/bifoundation_domain/config/bipublisher/repository/Tools/ cp $ORACLE_HOME/clients/bipublisher/repository/Admin/DataSource/msmdacc64.dll $ORACLE_HOME/../user_projects/domains/bifoundation_domain/config/bipublisher/repository/Admin/DataSource rm -rfv $ORACLE_HOME/../user_projects/domains/bifoundation_domain/servers/bi_server1/tmp/_WL_user/bipublisher_11.1.1/*/jsp_servlet
(NB the
msmdacc64.dll
didn’t exist on either of my installations that I’ve tried this on) - Windows:
- Start up Admin Server, Managed Server, and OPMN. Login to OBIEE and check the new version:
- Don’t forget to check the README.html for patch 16453010 for full instructions on updating the client, customised skins, mapviewer config, etc.
OBIEE 11.1.1.6.6 Patch Released
Patch 15844023 Patch 11.1.1.6.6 (1 of 7) Oracle Business Intelligence Installer
Patch 15844066 Patch 11.1.1.6.6 (2 of 7) Oracle Real Time Decisions
Patch 14800665 Patch 11.1.1.6.6 (3 of 7) Oracle Business Intelligence Publisher
Patch 15843961 Patch 11.1.1.6.6 (4 of 7) Oracle Business Intelligence ADF Components
Patch 15844096 Patch 11.1.1.6.6 (5 of 7) Enterprise Performance Management Components Installed from BI Installer 11.1.1.6.x
Patch 14791926 Patch 11.1.1.6.6 (6 of 7) Oracle Business Intelligence
Patch 15839347 Patch 11.1.1.6.6 (7 of 7) Oracle Business Intelligence Platform Client Installers and MapViewer
As always: don't forget JDEV patch 13952743
Cheers!