Tuesday, March 22, 2016

How to Setup Proxy for your old version of oracle Application 11.5.10.2

Download Oracle Fusion Middleware  11g web Tier.


#!/bin/ksh
# .profile for 11gAS ebs
#
export TWO_TASK=PRO0TS
export MWLS_HOME=/apps2/ebs/product/proxy_tst2
export ORACLE_HOME=$MWLS_HOME/webtier_pro0ts
export ORACLE_INSTANCE=/apps2/ebs/product/proxy_tst2/pro0ts_inst
export LD_LIBRARY_PATH=$ORACLE_HOME/lib32:$ORACLE_HOME/lib:$ORACLE_HOME/ctx/lib32:/usr/lib:$LIBPATH
export PATH=$ORACLE_HOME/lib32:$ORACLE_HOME/bin:$ORACLE_INSTANCE/bin:$ORACLE_HOME/opmn/bin::$ORACLE_HOME/OPatch:$ORACLE_INSTANCE/config/usr/bin:$PATH
OH=$ORACLE_HOME; export OH
OI=$ORACLE_INSTANCE; export OI

alias cdi='cd $OI'
alias cdo='cd $OH'

echo
env | sort | egrep 'ORA|TNS


  • Setup up your environments
  • you can edit 

/apps2/scratch/PROPERTY/FMW/Disk1/stage/Response/staticports.ini


Copy the modified ini files in temp directory for later conig.sh purpose.
./runInstaller



After your installation is completed.

edit your ssl conf file under

/apps2/ebs/product/inst/config/OHS/ohs1/ssl.conf based on your requirements 

ProxyRequests off
 NameVirtualHost *:4459
ServerName ebs.xxx.xxx
ServerAlias ebs
ProxyPass / http://ebs.xxx.xxx:4009/
ProxyPassReverse / http://ebs.xxx.xxx:4009/
   SSLEngine on
   SSLProxyEngine on
   SSLCipherSuite TLS_RSA_WITH_AES_256_CBC_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA
   SSLProxyCipherSuite TLS_RSA_WITH_AES_256_CBC_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA
   SSLProtocol -all +TLSv1

   SSLWallet "/apps2/oracle/local/certificates/wrkdir"
   SSLProxyWallet "/apps2/oracle/local/certificates/wrkdir"
   ErrorLog "${ORACLE_INSTANCE}/diagnostics/logs/${COMPONENT_TYPE}/${COMPONENT_NAME}/4459_error_log 43200"
   TransferLog "|${ORACLE_HOME}/ohs/bin/odl_rotatelogs ${ORACLE_INSTANCE}/diagnostics/logs/${COMPONENT_TYPE}/${COMPONENT_NAME}/4459_access_log 43200"
SSLVerifyClient None
   SSLProtocol nzos_Version_1_0 nzos_Version_3_0
   SSLCRLCheck Off


on the oracle application side apache side. you need to comment out the port number in httpd.conf 

 Port: The port to which the standalone server listens. For
# ports < 1023, you will need httpd to be run as root initially.
#
Port 4010
Listen 4010 


#
# Listen 4459
#


No comments: