美文网首页后台开发Java学习笔记
Tomcat 启动巨慢解决方案及原理

Tomcat 启动巨慢解决方案及原理

作者: 半亩荒地 | 来源:发表于2017-08-01 11:19 被阅读11次

    最近在部署项目启动tomcat的时候,发现启动超慢,启动一次要4-5分钟。在查看tomcat的日志的时候看到:WARNING: Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [152,858] milliseconds。这个就是罪魁祸首了。

    于是就在网上百度解决方案,
    在你的 JRE 中,在 lib/security 下编辑 java.security。
    把securerandom.source=file:/dev/random
    改成
    securerandom.source=file:/dev/./urandom

    这样倒是把问题解决了,但是还是其所以然。

    查看java.security 文件,看到有这么的注释:

    image.png
    我就去网上搜 file:/dev/random 和file:/dev/urandom,还真的搜到了。这里贴上该作者的地址: http://blog.csdn.net/ohmygirl/article/details/40385083

    我在本地使用 cat /dev/random | od -x ,卡住了,半天都没有数据出来。

    image.png

    换成 cat /dev/urandom | od -x ,刷刷出来很多数据,秒杀啊。cat /dev/./urandom | od -x 也是很快。

    相关文章

      网友评论

        本文标题:Tomcat 启动巨慢解决方案及原理

        本文链接:https://www.haomeiwen.com/subject/sfqjlxtx.html