Oracle OAM

错误一
安装完Oracle Access Manager 10.1.4.3.0 Identity Server后,启动遇到如下错误:
Using Linux Threading Library.
/opt/netpoint/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: 11503
[root@osl302cn8 bin]# /bin/sh: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory


解决办法:
if [ ${SYSTEM} = "Linux" ]
 then
     unset LD_ASSUME_KERNEL;
     #LD_ASSUME_KERNEL="2.4.19";  (注释掉)
     #export  LD_ASSUME_KERNEL ;  (注释掉)
 fi
 


原因:
For OEL 5, we need uncomment 3 lines containing LD_ASSUME_KERNEL in the start_ois_server file.
http://forums.oracle.com/forums/thread.jspa?messageID=2218299

错误二
启动时遇到错误
Identity server error:
"OIS server watchdog cannot run, because there is no OIS server to watch"
Access sevrer error:

"Access server started with pid : 22143
Successfully initialized the AAA engine and its handlers.
Bin : Address already in use
Access server Exception : Error :binn
Starting Access server Watchdog…..
Access server Watchdog cannot run, because there is no AAA server to watch"

查看日志:
tail -f /opt/netpoint/identity/oblix/logs/oblog.log
../ldap_connection_mngr.cpp:443 "Failed to connect to directory server"lpszHost^ .cn.oracle.com port^3060


原因
ldap连接不上

解决办法
启动ldap,关闭ldap机器防火墙,重新连接OAM机器(建立新的连接),重新启动OAM,正常启动

错误三
遇到访问OHS:Port后
Error_324 (net::ERR_EMPTY_RESPONSE)

原因是:OAM 机器的域名有问题,不是一个在DNS注册的域名.
解决办法:
vi /etc/hosts, vi /etc/inet/ipnodes, vi /etc/nodemane 修改成正确域名即可





猜你喜欢

转载自xw302.iteye.com/blog/716016