vote up 0 vote down star

Hello All,
I am connecting to tomcat over JMX. I wrote a simple JMX client to connect to tomcat and read different JMX MBean attributes to monitor tomcat. My problem is, I would like to know which port tomcat's HTTP connector is listenting. Is there a way to get this details over JMX Mbean - without reading the server.xml file of tomcat. But to get it thru some attributes of one MBean ?

flag

55% accept rate

1 Answer

vote up 0 vote down

The MBean is called something like Catalina:type=ThreadPool,name=http-8080. As you can see the connector port is in the name.

link|flag
If the tomcat is not running on 8080, and it is running on 9090 - then the name of the bean will become Catalina:type=ThreadPool,name=http-9090. In that case, I need to know which port the http connector is running. – Shamik Mar 17 at 15:35
In that case it is running on port 9090. The name of the threadpool reflects the port of the http conector. – Kees de Kooter Mar 17 at 19:52
Probably one stupid question - but my question is - is there any way to know the names of the beans programatically that tomcat exposes ? – Shamik Mar 18 at 4:10
You can use the JConsole utility to inspect all MBeans of a running application. – Kees de Kooter Mar 18 at 7:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.