Sunday, April 25, 2010

Oracle Fusion Middleware - High Disk Usage ?

Cleaning out my laptop in preparation for a workshop I have to deliver, I have pickup that my FMW home is taking up a massve amount of disk space. I have SOA, JDeveloper and OER/OSR installed.

After investigating I found the scoundrel - everytime you update a JDeveloper extension, it creates a *.backup.* file for all the files replaced in the JDeveloper extension.

I cleaned out the backup files, saving close to 1 Gb of disk space.

Thursday, April 8, 2010

Disable IPv6 on Linux

To disable IPv6 on Linux, add the following to modprobe.conf:

alias net-pf-10 off
alias ipv6 off

Wednesday, March 17, 2010

Installing CAMM on 64-bit Linux

If installing CAMM on 64-bit Linux and you encounter the following error:
awk: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory


execute the following to fix:

cat install.bin |sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_KERNEL/" > install.fixed
chmod +x install.fixed
./install.fixed

Tuesday, March 16, 2010

Installing older Oracle software on OEL5/RH5


When starting runInstaller, and you get an Exception java.lang.UnsatisfiedLinkError: ...libXp.so.6 ... , then you have to install the compatibility library - xorg-x11-libs-compat.x.x.rpm, which can be downloaded at http://oss.oracle.com/projects/compat-oracle/files

OPMN failing with
../Apache/Apache/bin/httpd: error while loading shared libraries: libdb.so.2: cannot open shared object file: No such file or directory then you have to create a software link to as follow: ln -s /usr/lib/libgdbm.so /usr/lib/libdb.so.2