WebLogic is mainly run in the Java Virtual machine, therefore, WebLogic console load slow problem of the solution is mainly to modify the Java related parameters
1. Find the path to Java
Suse11-weblogic:/usr/local/jdk/jdk1.7.0_75/jre/lib/security # echo $JAVA _home
/usr/local/jdk/jdk1.7.0_75
As you can see, my path is:/usr/local/jdk/jdk1.7.0_75
2, edit the file, modify the relevant parameters
Configuration file path: $JAVA _home/jre/lib/security/java.security
Suse11-weblogic:/usr/local/jdk/jdk1.7.0_75/jre/lib/security # vim $JAVA _home/jre/lib/security/java.security
69 #
Source=file:/dev/urandom #securerandom.
Securerandom.source=file:/dev/./urandom
72 #
Modify Securerandom.source=file:/dev/urandom to Securerandom.source=file:/dev/./urandom
Note:/dev/random is a special device file in Linux that can be used as a random number generator or as a pseudo-random number generator.
Further deep will, you can sisu find information, I said I saw a lap do not understand.
3. Restart Supervisor in force
This article is from the "Breeze Month Blog" blog, please be sure to keep this source http://watchmen.blog.51cto.com/6091957/1932033
weblogic-optimization WebLogic Console login Load Slow problem