Forms Reports 12.2.1.4 With Weblogic 12c 12.2 — Install Oracle

echo "Installation completed."

ProxyPass /forms http://localhost:7001/forms ProxyPassReverse /forms http://localhost:7001/forms ProxyPass /reports http://localhost:7001/reports ProxyPassReverse /reports http://localhost:7001/reports Create /etc/systemd/system/wls-forms.service : Install Oracle Forms Reports 12.2.1.4 With Weblogic 12c 12.2

WLS_MEM_ARGS_64BIT="-Xms2048m -Xmx4096m" export WLS_MEM_ARGS_64BIT Apache config ( /etc/httpd/conf.d/forms.conf ): echo "Installation completed

$ORACLE_HOME/oracle_common/common/bin/wlst.sh <<EOF readTemplateForUpdate('/u01/app/oracle/product/fmw/wlserver/common/templates/wls/wls.jar') selectTemplate('Oracle Forms - 12.2.1.4 [forms]') selectTemplate('Oracle Reports - 12.2.1.4 [reports]') setOption('DomainName', 'forms_domain') setOption('DomainHome', '/u01/app/oracle/config/domains/forms_domain') writeDomain('/u01/app/oracle/config/domains/forms_domain') closeTemplate() exit() EOF 4.1 Set Boot Properties (Avoid Password Prompt) Create $DOMAIN_HOME/servers/AdminServer/security/boot.properties : Install Oracle Forms Reports 12.2.1.4 With Weblogic 12c 12.2

nmConnect(username='weblogic', password='Oracle123', host='localhost', port='5556', domainName='forms_domain') nmStart() nmEnroll(domainHome='/u01/app/oracle/config/domains/forms_domain') nmKill() exit() cd $DOMAIN_HOME/bin ./startWebLogic.sh Wait for output: “Server started in RUNNING mode” 4.4 Start Forms Managed Server In new terminal:

[Unit] Description=Oracle WebLogic Forms Domain After=network.target [Service] Type=forking User=oracle Environment="JAVA_HOME=/u01/app/oracle/jdk" Environment="DOMAIN_HOME=/u01/app/oracle/config/domains/forms_domain" ExecStart=$DOMAIN_HOME/bin/startWebLogic.sh ExecStop=$DOMAIN_HOME/bin/stopWebLogic.sh Restart=on-failure