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?