Hello everyone, first of all i'm sorry if this was asked already before.
One of my client wants to migrate their existing forms n reports from 10g to 11g. He would like to install the forms and reports on weblogic 11g server and oracle 11g database standard edition. Os is RHEL 6.9
I have been following this doc to get the job done
https://oracle-base.com/articles/11g/oracle-forms-and-reports-11gr2-installation-on-oracle-linux-6
But as far as I know using this doc i can only install forms n reports and weblogic server in one server and database in another server. I'm facing problem with the oracle_home path while setting the environment in ,bash_profile.
as for database oracle_home=/u01/app/oracle/11.2.0/prodcut/db_home and for forms n reports oracle_home=/u01/app/oracle/product/fmw11g/Oracle_FRHome1
For reference this is my .bash_profile entry
export PATH
export TMP=/u01/tmp
export TMPDIR=$TMP
export ORACLE_HOSTNAME=server1.soumya.com
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1
export MW_HOME=/u01/app/oracle/product/fmw11g
export WLS_HOME=$MW_HOME/wlserver_10.3
export WL_HOME=$WLS_HOME
# Set to the appropriate JAVA_HOME.
export JAVA_HOME=/usr/java/jdk1.8.0_121
#export JAVA_HOME=/u01/app/oracle/jrockit-jdk1.6.0_45-R28.2.7-4.1.0
#export JAVA_HOME=/u01/app/oracle/jdk1.7.0_17
export PATH=$JAVA_HOME/bin:$PATH
export FR_HOME=$MW_HOME/Oracle_FRHome1
export FR_INST=$MW_HOME/asinst_1
export PATH=/usr/sbin:$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib:/usr/lib64
export CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
I would appreciate if someone has any doc or blog link for this scenario where both database and weblogic , forms n reports would be installed in one server only. Thanks