最近在部署项目启动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 文件,看到有这么的注释:
我就去网上搜 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 也是很快。
网友评论