You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tomcat is taking between 30 and 74 seconds to startup in normal and debug mode respectively. A review of the log file catalina.out indicates it's possibly scanning JARs that are unnecessary, failing to find required JARs, and possibly encountering delays generating random session keys. See this post https://wiki.apache.org/tomcat/HowTo/FasterStartUp
a setting for a non blocking key generator needs to be implemented...
-Djava.security.egd=file:/dev/./urandom
and the issues with logger files that are not being compiled due to dependency conflicts resolved.
The text was updated successfully, but these errors were encountered:
Tomcat is taking between 30 and 74 seconds to startup in normal and debug mode respectively. A review of the log file catalina.out indicates it's possibly scanning JARs that are unnecessary, failing to find required JARs, and possibly encountering delays generating random session keys. See this post
https://wiki.apache.org/tomcat/HowTo/FasterStartUp
a setting for a non blocking key generator needs to be implemented...
-Djava.security.egd=file:/dev/./urandom
and the issues with logger files that are not being compiled due to dependency conflicts resolved.
The text was updated successfully, but these errors were encountered: