Skip to content

Commit e4151b9

Browse files
committed
add troubleshoot#4
1 parent f324a00 commit e4151b9

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

README.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Steps to install Oracle Fusion Middleware Infrastructure on adminVM:
179179
oracleHome=/u01/app/wls/install/oracle/middleware/oracle_home
180180
. $oracleHome/oracle_common/common/bin/setWlstEnv.sh
181181
```
182-
- Install fmw_12.2.1.4.0_infrastructure.jar
182+
- Install fmw_12.2.1.4.0_infrastructure.jar, if you run into **ERROR: Temporary directory /tmp does not have enough free space.**, see [Troubleshoot#4](#troubleshoot)
183183
- Launch the installer
184184
```
185185
java -jar fmw_12.2.1.4.0_infrastructure.jar
@@ -237,7 +237,7 @@ Now you have Forms and Reports installed in the adminVM. Let's clone the machine
237237
238238
You have Oracle Forms and Reports installed in the adminVM, you are able to reuse the installation by cloning adminVM for managed servers.
239239
240-
Follow the steps to clone adminVM, for high availability, let's create the disk and machine in different zones as shown in the table:
240+
Follow the steps to clone adminVM, for high availability, let's create the disk and machine in different zones as the table shows:
241241
242242
| Index | Machine Name | Disk Name | Availability Zone |
243243
|----------|----------|----------|----------|
@@ -1448,3 +1448,25 @@ Delete the resource group from Azure portal.
14481448
Root cause: incorret hostname and ip address.
14491449
14501450
Solution: double check entries in /etc/hosts. See [Oracle support doc](https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=32587788759518&parent=EXTERNAL_SEARCH&sourceId=PROBLEM&id=726588.1&_afrWindowMode=0&_adf.ctrl-state=21lszme5t_4).
1451+
1452+
4. ERROR: Temporary directory /tmp does not have enough free space.
1453+
1454+
```text
1455+
-bash-4.2$ ./fmw_12.2.1.4.0_fr_linux64.bin
1456+
ERROR: Temporary directory /tmp does not have enough free space. At least 3134 MB of free space are required.
1457+
Please input another directory or [Exit]:
1458+
1459+
```
1460+
1461+
Solution: specify a tmp folder
1462+
1463+
```bash
1464+
sudo su - oracle
1465+
# create a tmp folder
1466+
mkdir /u01/oracle/tmp
1467+
# export DISPLAY variable
1468+
export DISPLAY=<yourWindowsVMVNetInternalIpAddress>:0.0
1469+
# install again
1470+
./fmw_12.2.1.4.0_fr_linux64.bin -J-Djava.io.tmpdir=/u01/oracle/tmp
1471+
1472+
```

0 commit comments

Comments
 (0)