Thursday, March 10, 2011

WLS Console Timeout

The WebLogic console timeout is a great feature for security, yet a horrible feature during development. Logging in over and over again gets to be annoying. This is very easy to change, but I would never do this on a production system!

http://blogs.oracle.com/johngraves/2011/03/wls_console_timeout.html

WebLogic Silent Install 11.1.1.4 (WLS 10.3.4) - Linux

install.sh

!/bin/bash
./wls1034_oepe111161_linux32.bin -mode=silent -silent_xml=./silent.xml

silent.xml

xml version="1.0" encoding="UTF-8"?>

<bea-installer>
<input-fields>
<data-value name="BEAHOME" value="/opt/app/wls10.3.4" />
<data-value name="WLS_INSTALL_DIR" value="/opt/app/wls10.3.4/wlserver_10.3" />
input-fields>
bea-installer>


Note about Oracle_Home: Since all products are moving to a common WLS base, I simply use the WLS version as my Oracle Home. In this case wls10.3.4. Also, I keep my user_projects outside my Oracle_Home directory to keep things clean. I typically use /opt/app/user_projects or a variation of that.