Tuesday 27 June 2017




Hi guys, Today I'll show you how to apply Oracle SOA patch.


requirement - apply Oracle SOA Patch 25809237: SOA Bundle Patch 11.1.1.9.170418
Below are the steps -

S1. Login into
http://support.oracle.com/
S2. Click on Patches & Updates tab
S3. Enter the Patch Id number and hit search
S4. Choose the right one from the list (e.g. Patch 25809237: SOA Bundle Patch 11.1.1.9.170418)
S5. Click on download and copy into respective directory
S6. Unzip into any (e.g. $ unzip -d PATCH_TOP p25809237_111190_Generic.zip)

(As this patch needs to be applied for both SOA and Oracle_common HOMEs)

7. To apply at Oracle_Common HOME:
wcpadmin@vstrgl061d:/opt/app/home/wcpadmin $ . fmw.env
$ export ORACLE_HOME=/ns/apps/wcp/product/fmw/Oracle_WC1
export PATH=/ns/apps/wcp/product/fmw/Oracle_WC1/OPatch:$PATH
wcpadmin@vstrgl061d:/ns/apps/wcp/product/fmw $ which opatch
/ns/apps/wcp/product/fmw/Oracle_WC1/OPatch/opatch
wcpadmin@vstrgl061d:/ns/apps/wcp/product/fmw $ opatch lsinventory
$ cd <patch_dir>
$ opatch apply

To Check if patch is applied or not
wcpadmin@vstrgl061d:/tmp/Patch/PATCH_TOP1/25809237 $ opatch lsinventory | grep -i 25809237
Patch  25809237     : applied on Tue Jun 27 11:26:25 BST 2017

8. To apply at SOA HOME:
sfcadmin@vstrgl061d:/ns/apps/sfc/product/fmw/oracle_common $ export ORACLE_HOME=ns/apps/sfc/product/fmw/oracle_common
sfcadmin@vstrgl061d:/ns/apps/sfc/product/fmw/oracle_common $ export PATH=ns/apps/sfc/product/fmw/oracle_common/OPatch:$PATH
sfcadmin@vstrgl061d:/tmp/Patch/PATCH_TOP1/25809237 $ which opatch
/ns/apps/sfc/product/fmw/oracle_common/OPatch/opatch
sfcadmin@vstrgl061d:/tmp/Patch/PATCH_TOP1/25809237 $ opatch apply

To check if patch is applied or not
sfcadmin@vstrgl061d:/tmp/Patch/PATCH_TOP1/25809237 $ opatch lsinventory | grep -i 25809237
Patch  25809237     : applied on Tue Jun 27 12:16:28 BST 2017
sfcadmin@vstrgl061d:/tmp/Patch/PATCH_TOP1/25809237 $ echo $ORACLE_HOME
/ns/apps/sfc/product/fmw/oracle_common

9. Start all services do the sanity. 



Cheers Guys :)


How to UP/DOWN and know Status of Node Manager, Admin Server, Managed Server and VIPS -


Hi All, in this post I'll show how to know status of your Node Manager, Admin, Manage and VIPS status.
Sometime most of the developer not able to run console or enterprise manager so then need to log in through Unix prompts and see the status.


Below are the steps.
step1 - open Unix Prompts and login as a admin, to login as a super user run the command sudo su - username (sudo - set user and do, su - super user).

step2 - to see the status run the command status_all

step3 - to start all activities run the start_all

once you'll start the services then you'll able to see console or em and can able to access the application.
Console -

Application -

step4 - to stop all the activities run the stop_all, when will run stop_all unix promps for you id for auditing,after entering your id all services will stop.




once you'll down all the server you'll not able to see your console or em and application.




Application -

now all services are up and running.


Thanks guys to here me :)

Eclipse With Python

Hi Guys, Today i'll share how to start python project in eclipse IDE. to start Py development in eclipse we need to add Py Dev plugi...