Tomcat 啓動很慢,且日誌上無任何錯誤,在日誌中查看到以下信息:java
Log4j:[2015-10-29 15:47:11] INFO ReadProperty:172 - Loading properties file from class path resource [resources/jdbc.properties] Log4j:[2015-10-29 15:47:11] INFO ReadProperty:172 - Loading properties file from class path resource [resources/common.properties] 29-Oct-2015 15:52:53.587 INFO [localhost-startStop-1] org.apache.catalina.util.SessionIdGeneratorBase.createSecureRandom Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [342,445] milliseconds.
Tomcat 7/8都使用org.apache.catalina.util.SessionIdGeneratorBase.createSecureRandom類產生安全隨機類SecureRandom的實例做爲會話ID,比較耗時。算法
是基於SHA-1算法實現且保密性較強的僞隨機數生成器。apache
很是適合那些須要很是高質量隨機性的場景,好比一次性的支付或生成密鑰的場景。對於生成高質量的加密密鑰或者是須要長期保護的場景,必定要這麼作。tomcat
隨機數產生器會收集來自設備驅動器和其它源的環境噪聲數據,並放入熵池中。產生器會評估熵池中的噪聲數據的數量。當熵池爲空時,這個噪聲數據的收集是比較花時間的。這就意味着,Tomcat在生產環境中使用熵池時,會被阻塞較長的時間。安全
解決辦法:session
在JVM環境中解決
打開$JAVA_PATH/jre/lib/security/java.security這個文件,找到下面的內容:dom
securerandom.source=file:/dev/urandom
替換成加密
securerandom.source=file:/dev/./urandom