Re: Error setting socket options

2022-12-09 Thread Mark Thomas
There is no available debug logging options so you'll need to use remote debugging to figure out what is going on. https://cwiki.apache.org/confluence/display/TOMCAT/Developing#Developing-Q1 Mark On 07/12/2022 14:07, Gustavo Monti Rocha wrote: In fact I'm not setting those variables. That's

Re: Error setting socket options

2022-12-07 Thread Gustavo Monti Rocha
In fact I'm not setting those variables. That's why I'm not sure because I'm getting that error. On Wed, Dec 7, 2022 at 10:36 AM Mark Thomas wrote: > On 07/12/2022 12:15, Gustavo Monti Rocha wrote: > > Hi Mark, > > > > Thanks for helping me. How can I check if my environment has valid values >

Re: Error setting socket options

2022-12-07 Thread Mark Thomas
On 07/12/2022 12:15, Gustavo Monti Rocha wrote: Hi Mark, Thanks for helping me. How can I check if my environment has valid values for JVM? If you are setting those values, the simple solution is don't set them and the JVM will use appropriate defaults for your environment. If you do want t

Re: Error setting socket options

2022-12-07 Thread Gustavo Monti Rocha
Hi Mark, Thanks for helping me. How can I check if my environment has valid values for JVM? Thanks in advance. On Wed, Dec 7, 2022 at 6:21 AM Mark Thomas wrote: > Make sure you have set socket.soLingerOn and socket.soLingerTime to > valid values for your JVM and platform. Tomcat does not set

Re: Error setting socket options

2022-12-07 Thread Mark Thomas
Make sure you have set socket.soLingerOn and socket.soLingerTime to valid values for your JVM and platform. Tomcat does not set these by default so it is something your application or Spring Boot is doing. Mark On 07/12/2022 01:47, Gustavo Monti Rocha wrote: Hello, I'm using spring boot wit