WebLogic 12c Silent Installation
This article demonstrates how to perform a silent installation of WebLogic Server 12c on Oracle Linux.
oracle 12cconfigurationintermediate
by OracleDba
14 views
This article demonstrates how to perform a silent installation of WebLogic Server 12c on Oracle Linux.
12345678910111213141516171819
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
192.168.56.103 ol6.localdomain ol6
groupadd -g 1000 oinstall
useradd -u 1100 -g oinstall oracle
passwd oracle
mkdir -p /u01/app/oracle/middleware
mkdir -p /u01/app/oracle/config/domains
mkdir -p /u01/app/oracle/config/applications
chown -R oracle:oinstall /u01
chmod -R 775 /u01/
export MW_HOME=/u01/app/oracle/middleware
export WLS_HOME=$MW_HOME/wlserver
export WL_HOME=$WLS_HOME
# Set to the appropriate JAVA_HOME.
export JAVA_HOME=/u01/app/oracle/jdk1.8.0_77
export PATH=$JAVA_HOME/bin:$PATH12345
cd /u01/app/oracle/
tar -xvzf /u01/software/jdk-8u77-linux-x64.tar.gz
# It may just have the following extension.
tar -xvzf /u01/software/jdk-8u77-linux-x64.gz1234567891011121314151617181920212223242526272829303132
[ENGINE]
Response File Version=1.0.0.0.0
[GENERIC]
ORACLE_HOME=/u01/app/oracle/middleware
INSTALL_TYPE=WebLogic Server
MYORACLESUPPORT_USERNAME=
MYORACLESUPPORT_PASSWORD=<SECURE VALUE>
DECLINE_SECURITY_UPDATES=true
SECURITY_UPDATES_VIA_MYORACLESUPPORT=false
PROXY_HOST=
PROXY_PORT=
PROXY_USER=
PROXY_PWD=<SECURE VALUE>
COLLECTOR_SUPPORTHUB_URL=
[ENGINE]
Response File Version=1.0.0.0.0
[GENERIC]
ORACLE_HOME=/u01/app/oracle/middleware
INSTALL_TYPE=Fusion Middleware Infrastructure
MYORACLESUPPORT_USERNAME=
MYORACLESUPPORT_PASSWORD=<SECURE VALUE>
DECLINE_SECURITY_UPDATES=true
SECURITY_UPDATES_VIA_MYORACLESUPPORT=false
PROXY_HOST=
PROXY_PORT=
PROXY_USER=
PROXY_PWD=<SECURE VALUE>
COLLECTOR_SUPPORTHUB_URL=
inventory_loc=/u01/app/oraInventory
inst_group=oinstall12345678
# WLS
$JAVA_HOME/bin/java -Xmx1024m -jar /u01/software/fmw_12.2.1.0.0_wls.jar -silent -responseFile /u01/software/wls.rsp -invPtrLoc /u01/software/oraInst.loc
# Infrastructure
$JAVA_HOME/bin/java -Xmx1024m -jar /u01/software/fmw_12.2.1.0.0_infrastructure.jar -silent -responseFile /u01/software/fmw_infr.rsp -invPtrLoc /u01/software/oraInst.loc
. $WLS_HOME/server/bin/setWLSEnv.sh
java weblogic.version12345678910111213
cd /u01/software
unzip p6880880_132000_Generic.zip
export PATH=/u01/software/OPatch:$PATH
export PATH=$MW_HOME/OPatch:$PATH
unzip -d PATCH_TOP p22331568_122100_Generic.zip
cd PATCH_TOP/22331568
export ORACLE_HOME=$MW_HOME
opatch apply -silent
. $WLS_HOME/server/bin/setWLSEnv.sh
java weblogic.versionPlease to add comments
No comments yet. Be the first to comment!