tomcat在linux中启动慢的解决方案
Posted sunyj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat在linux中启动慢的解决方案相关的知识,希望对你有一定的参考价值。
有两种解决办法:
1)在Tomcat环境中解决
可以通过配置JRE使用非阻塞的Entropy Source。
在catalina.sh中加入这么一行:-Djava.security.egd=file:/dev/./urandom 即可。
加入后再启动Tomcat,整个启动耗时下降到Server startup in 2912 ms。
2)在JVM环境中解决
打开$JAVA_PATH/jre/lib/security/java.security这个文件,找到下面的内容:
securerandom.source=file:/dev/random
替换成
securerandom.source=file:/dev/urandom
以上是关于tomcat在linux中启动慢的解决方案的主要内容,如果未能解决你的问题,请参考以下文章