Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JBoss eventually stops responding to request, but no OOME

Tags:

jboss

I'm having an issue with jboss server. when i run jboss server, it stops responding( no fixed time, so cannot predict when will it stop responding after start) after that it doesn't writes anything in log file. my problem is similar to the problem described on jboss community, link given below but it doesn't have the answer. please help. http://community.jboss.org/message/526193

--Ravi

like image 976
Ravi Avatar asked Dec 30 '25 00:12

Ravi


1 Answers

It sounds like your jboss server is running out of threads to allocate and is waiting for a new one to become available. Try triggering a thread dump (ctrl-\) and see if you find any threads suspiciously locked and waiting in some of your code. Quite possibly you have a deadlock or memory leak somewhere in your code which is causing old threads to lock up and never be released.

Alternatively try what the guy you linked to did, i.e. increasing the amount of threads available.

edit: For some more basic advice, this post might be of use to you.

like image 166
wds Avatar answered Jan 06 '26 18:01

wds



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!