首页 > 学院 > 开发设计 > 正文

Tomcat 启动花费很长时间的解决方案

2019-11-14 22:13:26
字体:
来源:转载
供稿:网友
Tomcat 启动花费很长时间的解决方案 Posted on 2014-12-15 11:00 WebClerk 阅读(...) 评论(...) 编辑 收藏

原始解决方案链接

$java_PATH/jre/lib/security/java.security

中的

securerandom.source=file:/dev/urandom

替换为

securerandom.source=file:/dev/./urandom

根本原因

In this implementation, the generator keeps an estimate of the number of bits of noise in the entropy pool. From this entropy pool random numbers are created. When read, the /dev/random device will only return random bytes within the estimated number of bits of noise in the entropy pool. /dev/random should be suitable for uses that need very high quality randomness such as one-time pad or key generation.

When the entropy pool is empty, reads from /dev/random will block until additional environmental noise is gathered. The intent is to serve as a cryptographically secure pseudorandom number generator, delivering output with entropy as large as possible. This is suggested for use in generating cryptographic keys for high-value or long-term PRotection. http://en.wikipedia.org/wiki//dev/random#linux


上一篇:Effective Java中文版

下一篇:Struts2 Result

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表