HP-Unix上安装Weblogic10.3.3

1.安装jdk如果出现如下错误

/usr/lib/dld.sl: Can't find path for shared library: libjli.sl

/usr/lib/dld.sl: No such file or directory


在/etc/profile中加入
export SHLIB_PATH=/opt/java6/jre/lib/PA_RISC2.0/jli


2.创建User Domain出现如下错误

Create Domain Error: setSeed() Failed!


引起问题的主要原因是:由于JAVA的安全级别设置
解决办法共分为两个步骤,请按顺序操作:
1. in the java.security file in the directory JAVA_HOME/jre/lib/security edit the entry securerandom.source=file:/dev/urandom to securerandom.source=file:/dev/random

2. while using the installer or shell command use -Djava.security.egd=/dev/random i.e
for running installer use java -jar filename.jar -mode=console -Djava.security.egd=/dev/random
Then to configure domain use sh config.sh -mode=console -Djava.security.egd=/dev/random
<Weblogic_Home>/utils/quickstart/quickstart.sh -mode=console -Djava.security.egd=/dev/random

猜你喜欢

转载自xmeteor.iteye.com/blog/868467