I am installing Oracle Access Manager 10.1.4.3 on Oracle Enterprise Linux (OEL) 5. When I tried to start the Identity Server for the first time I received the following error:
# /opt/oracle/oam/identity/oblix/apps/common/bin/start_ois_server
Using Linux Threading Library.
/opt/oracle/oam/identity/oblix/apps/common/bin/ois_server: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
rm: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
OIS Server started with pid: 3344
/bin/sh: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
I found that by commenting out the following line from the start_ois_serverfile that I was able to start the identity server without errors:
# LD_ASSUME_KERNEL=”2.4.19″;
[Update]
Commenting out that line works but another solution is to use the following Oracle provided script to start OIS instead:
./start_ois_server_nptl
I am not really sure what NPTL (Native Process Threading Library) is … but was told that NPTL runs on 64 bit.