1. The db uses mysql and the server is Tomcat. It was a working server, but the server is not running because of a memory leak.
Error Log created a ThreadLocal with key but failed to remove it when the web application was stopped. Threads are going to be renewed over time to try and avoid a probable memory leak.
I checked this site, but it's hard to find the answer to the problem.
sql-server
When you start Tomcat, add the JMX option, monitor it, and find out where it keeps increasing to solve it.
-Dcom.sun.management.jmxremote.port=8086
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false
You can monitor it by connecting to the relevant JMX port with tools such as VisualVM and JConsole.
© 2024 OneMinuteCode. All rights reserved.