Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在高并发和流量的多线程环境中,我们观察到 Jetty 服务器在一段时间后停止。
我们正在使用 Jetty 8
不知道是什么原因,也无法手动重现,有没有人知道什么时候让Jetty服务器自动关机。
Jetty 在任何情况下都不应该自动停止。所以首先,有几个问题:
STDOUT 或日志中关于可能导致关机的任何提示?STDOUT 和请求日志中的最后一条日志消息是什么?
如果您根本没有日志条目,则可能值得使用一些脚本定期抛出线程转储。例如每一分钟。您可以使用 jstack 或“kill -3”(SIGHUP)来执行此操作。