When executing the command java -jar /opt/TAR/fmw_12.2.1.0_wls.jar -silent -responseFile /opt/TAR/wls.rsp -invPtrLoc /opt/TAR/oraInst.loc
to download Weblogic, I get the following errors:
[ERROR] Data Insufficient to start Install.
[ERROR] Select one and only one Install Type. Any one of the variables SOFTWARE ONLY TYPE,BASIC TYPE or ADVANCED
[ERROR] Rule_VDiskSpace_Error. Aborting Install
I have passed all the checks including enough swap space and temp space. I have also tried to increase more swap space by doing the following
$ dd if=/dev/zero of=/myswap count=3000 bs=MiB
$ chmod 600 /myswap
$ mkswap /myswap
$ swapon /myswap
My wls.rsp
file looks like this
[ENGINE]
Response File Version=1.0.0.0.0
[GENERIC]
ORACLE_HOME/opt/weblogic/wls12.2.1.2.0
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=
and oraInst.loc
looks like this
inventory_loc=/opt/weblogic/oraInventory
inst_group=weblogic
What can fix those three errors?
There are three installation modes: graphical mode, console mode, or silent mode.
In the web browser navigate to the Oracle Fusion Middleware Software Downloads: http://www.oracle.com/technetwork/middleware/weblogic/downloads/index.html. Click In the Accept License Agreement. Select the Generic Installer. Click Download File.
Your response file has some issues - see fixed
[ENGINE]
Response File Version=1.0.0.0.0
[GENERIC]
DECLINE_AUTO_UPDATES=true
ORACLE_HOME=/opt/weblogic/wls12.2.1.2.0
INSTALL_TYPE=WebLogic Server
MYORACLESUPPORT_USERNAME=
MYORACLESUPPORT_PASSWORD=
DECLINE_SECURITY_UPDATES=true
SECURITY_UPDATES_VIA_MYORACLESUPPORT=false
PROXY_HOST=
PROXY_PORT=
PROXY_USER=
PROXY_PWD=
COLLECTOR_SUPPORTHUB_URL=
You need to add a value for DECLINE_AUTO_UPDATES
if you set to false, you need to add other parameters
the <SECURE VALUE>
is just a template - if you dont set username you dont need password, just leave blank
try to use
-ignoreSysPrereqs
so your command will be
java -jar /opt/TAR/fmw_12.2.1.0_wls.jar -ignoreSysPrereqs -silent -responseFile /opt/TAR/wls.rsp -invPtrLoc /opt/TAR/oraInst.loc
https://oracle-base.com/articles/misc/oui-silent-installations
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With