While trying to install getting an error
java -jar fmw_12.1.3.0.0_soa_quickstart.jar
Launcher log file is /tmp/OraInstall2014-07-07_11-50-41AM/launcher2014-07-07_11-50-41AM.log.
Insufficient free space in /tmp/orcl965540478413729726.tmp to extract the installer. Actual 153 MB. Required 3053 MB.
As I do not have sufficent space in /tmp directory used the following workaround.
Create a directory /fmw11g/tmp
export _JAVA_OPTIONS="-Djava.io.tmpdir=/fmw11g/tmp"
Now when you start the installer you see the o/p as
java -jar fmw_12.1.3.0.0_soa_quickstart.jar
Picked up _JAVA_OPTIONS: -Djava.io.tmpdir=/fmw11g/tmp
Launcher log file is /fmw11g/tmp/OraInstall2014-07-07_11-56-55AM/launcher2014-07-07_11-56-55AM.log.
2 comments:
Thank you - easy solution when you have limited space in /tmp
Thanks a lot for the workaround. I was struggling with this issue. It's working now.
Post a Comment