Apache Tomcat 随机会话数生成器问题 Ubuntu
Apache Tomcat random session number generator issue Ubuntu
我刚刚完成了长达 7 小时的(应该是)不存在的问题的解决方案。
这个可能只是DigitalOcean问题,因为我的本地开发服务器上没有它,但以防万一,我会尽量防止有人像我一样浪费时间。
我做了什么:
Tomcat 的工作绝对没有缺陷。然后我重新启动了 tomcat7
service tomcat7 restart
一个简单的 "It works!" 页面需要很长时间才能加载。
catalina.out 看起来很正常,但是...页面从未加载过。那么,为什么 tomcat 不能直接使用普通设置!?
我在 this blog
上找到了解决方案
I just needed to add the following system property to Tomcat's startup routine.
-Djava.security.egd=file:/dev/./urandom
对我来说,默认的 tomcat 包似乎打包错误。
我刚刚完成了长达 7 小时的(应该是)不存在的问题的解决方案。
这个可能只是DigitalOcean问题,因为我的本地开发服务器上没有它,但以防万一,我会尽量防止有人像我一样浪费时间。
我做了什么:
Tomcat 的工作绝对没有缺陷。然后我重新启动了 tomcat7
service tomcat7 restart
一个简单的 "It works!" 页面需要很长时间才能加载。 catalina.out 看起来很正常,但是...页面从未加载过。那么,为什么 tomcat 不能直接使用普通设置!?
我在 this blog
上找到了解决方案I just needed to add the following system property to Tomcat's startup routine.
-Djava.security.egd=file:/dev/./urandom
对我来说,默认的 tomcat 包似乎打包错误。