WebLogic Silent Install 11.1.1.4 (WLS 10.3.4)
- by john.graves(at)oracle.com
This is just a quick note to remind myself of how incredibly easy it is to install the base products without the aid of a mouse! Note to Windoze users: Why?!?! I’m only showing Linux examples in this blog so I encourage you to just say NO to win-no-z 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>
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
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.