1
vote
1answer
26 views

How do you enable JMX remoting or custom Java args with Railo?

Where do you go to edit the Java args in Railo to set up JMX remoting so that I can monitor the JVM with jVisualVM or other java monitoring tools? In the Apache Tomcat Railo Properties, under the ...
0
votes
0answers
36 views

Granting selective MBean invoke permissions on Tomcat

I'm doing a lot of Hibernate Second Level caching and want to be able to monitor the items in the cache using ...
0
votes
1answer
322 views

Spring JMX Mbean not appearing or being registered with jconsole

Just trying out a simple Spring JMX application within eclipse on a local tomcat server but can't seem to register the mbeans so they then become available to view within jconsole, within eclipse ...
0
votes
0answers
120 views

Needs heap-memory, non-heap memory, thread count etc values for tomcat in linux

We are planning to write scripts to fetch the values of Heap memory, non-heap memory, thread count etc, of tomcat from command line ( in linux). I have explored and found that we can use JMX via ...
0
votes
2answers
260 views

Exporting Spring MBeans to Tomcat's MBeanServer Instance

I am playing around with spring's JMX support with a WAR file I deploy on a tomcat server (which I have running locally). However, despite following the posted guides, I am unable to deploy my MBeans ...
0
votes
1answer
50 views

Tomcat server remote redeployement

We have a web app using Apache Shiro for security and deployed in a Tomcat 7 server, and an administration application in java swing. One of the purposes of the administration application is to manage ...
0
votes
2answers
284 views

Name [t3://127.0.0.1:7001/weblogic.management.mbeanservers.domainruntime] is not bound in this Context. Unable to find [t3:]

I have Tomcat 7.0 that has some Java code that I use to connect to a Weblogic 12c server to manage the weblogic server. I can use RMI/IIOP but I cannot use T3. Everyone says make sure the ...
0
votes
1answer
76 views

Why number of threads show in JMX does not match the tomcat settings?

My tomcat settings: maxThreads="100" minSpareThreads="25" maxSpareThreads="75" According to JMX, my current busy thread is 3 currentThreadsBusy = 3 But currentThreadCount= 100 Why it used up ...
0
votes
2answers
203 views

on setting jmx in catalina.sh, tomcat does not start

I am working on CentOS 6.3 64 bit machine. I have set the following in catalina.sh export CATALINA_OPTS="-Dcom.sun.management.jmxremote=true -Dcom.sun.management.jmxremote.port=7010 ...
0
votes
1answer
40 views

Custom JMXAuthenticator and Tomcat?

I want to know if it is possible to use custom JMXAuthenticator in Tomcat. From this link http://tomcat.apache.org/tomcat-6.0-doc/monitoring.html, I know Tomcat can enable JMX remote with ...
0
votes
0answers
255 views

Trying to access web application data using JMX in Tomcat 7

I'm trying to allow information gathering from my web application using jmx, I'm using Tomcat 7. I followed this tutorial Besides the part about the mbean-descriptor.xml and server.xml that seems ...
0
votes
1answer
287 views

monitor JDBC connections

I am trying to monitor JDBC connections in tomcat using JMX. But it is giving information only regarding the Datasource resources, I want the status of connection defined in Database.properties ...
2
votes
0answers
73 views

Tomcat monitoring MBean Registering

I am trying to register Mbeans for Tomcat server monitoring. I am using jdk 1.5. For HeapMemoryUsage.used parameter, I am getting the following error: "The observed attribute must be accessible ...
1
vote
1answer
132 views

How do I view available webservices on Tomcat?

There are two applications deployed in our project, one each on JBoss and Tomcat (using a proprietary FAST stack framework). The following URL lists available web services / the jmx-console on JBoss: ...
4
votes
1answer
269 views

Which MBeanServer to use in Tomcat, WebLogic, Glassfish et al?

I am currently working on http://truevfs.java.net , a virtual file system for Java. TrueVFS is modular and uses a plug-in architecture to load features at run-time without the need for configuring ...
2
votes
1answer
59 views

Why does tomcat creates an MBean with Catalina:type=ServerClassLoader,name=common

i was going through tomcat 6 source code which in Bootstrap.java creates a MBean with the following line "Catalina:type=ServerClassLoader,name="+common. Line 180. I am unable to understand why it ...
1
vote
0answers
169 views

Using Tomcat JMX Proxy from java client for starting/stopping web application

I'm trying to write a simple java client for starting/stopping application deployed on Tomcat using Tomcat JMX Proxy. Tomcat's documentation here ...
2
votes
1answer
282 views

Unable to activate CXF ResponseTimeFeature

I'm exposing a Web service using CXF inside a Tomcat server. I would like to expose in JMX some performance information like those proposed by the ResponseTimeFeature. My cxf-beans.xml file is as ...
0
votes
1answer
316 views

Unable to connect with jmxmp in Tomcat

In my spring + tomcat solution I have a problem, with jmxmp connection. I have enabled jmx in tomcat + added jmxremote_optional.jar This is manager.log INFO: JMXProxy: Error getting attribute ...
0
votes
1answer
277 views

Simple application with spring deploy to Tomcat

I have a simple standalone application with spring (Main class + bean class). It creates MBean (JMX). It just start up my bean. main class: public class Main { public static void main(final ...
0
votes
0answers
169 views

JMX notification in tomcat server

I have a requirement to get the notification, when "HeapMemoryUsage" increase more than size "X" or decrease than size "Y". In the below program I have used MBean [java.lang:type=Memory] and added ...
0
votes
1answer
209 views

Extract the list of MBeans registered against a Domain in JMX using Jython

I am able to get Attribute info if I know the name of an MBean, but the application I am trying to monitor generates randomly named MBeans and therefore need to be able to query JMX for the list of ...
0
votes
1answer
266 views

Monitoring Tomcat in a Java program using JMXProxyServlet

I'm trying to monitor Tomcat in Java program but I don't how I should pass the username and password to JMXProxyServlet. Does any one have any idea how to do this?
0
votes
2answers
217 views

Testing Tomcat's JDBC Pool Connection

Is there a way (such as through the use of JMX/MBeans) to test a Tomcat server's JDBC pool connection?
0
votes
1answer
199 views

Can Someone Help Me Understand Tomcat MBeans?

A while back I posted this question about monitoring a Tomcat server. Since that time I've played around a little bit and come up with a program that outputs a bunch of JMX information (MBeanServer ...
1
vote
1answer
388 views

How to enable JMXMP in Tomcat?

I've downloaded the JMXMP extensions and installed them in Tomcat's lib directory. Now, how can I make it use them, i.e. let Tomcat accept JMXMP connections? Oracle's examples show how to do it with ...
1
vote
2answers
2k views

Simple tool to monitor a Tomcat server using JMX

I am a computer science student currently doing an internship. My boss has asked me to write a simple tool to monitor a Tomcat server. I am just starting this project so I'm basically just playing ...
0
votes
1answer
466 views

ant Failed to retrieve RMIServer stub NameNotFoundException jmxrmi

I have alfresco 4.0d installed and I am trying to set up monitoring using cacti. I have got the template from percona. When i try to run the following command I get an error. I used the jar file as ...
1
vote
1answer
150 views

Retrieve the name of webapps deployed on Tomcat using JMX MBeans

Is it possible to determine what all webapps are deployed on a tomcat server using the mbean exposed?
0
votes
1answer
320 views

Is it possible to enable JMX in embedded Tomcat 7?

I would like to access Server and Connectors from within my webapp. Furthermore, I need to launch this webapp from embedded Tomcat. Here is how I boot tomcat: Tomcat tomcat = new Tomcat(); ...
2
votes
1answer
287 views

Can't make MXBean to connect to database through JConsole

I just hope if there is somebody who have seen and resolved this problem. I have a MBean and a MXBean classes. Both are using the same service class to get access to the database through a DAO class. ...
0
votes
1answer
262 views

Connect to remote server and start/stop the Tomcat that's running on that particular server using Ant?

The purpose is to: connect to a remote server maybe via host: ip , port: 8181 stop Tomcat that's running on that server deploy a .war file restart Tomcat Underneath are few approaches I have ...
1
vote
1answer
3k views

Debugging VisualVM remote connection

I am running Tomcat 6 on a Linux server in Amazon's cloud. I am trying to connect to it with VisualVM from my Mac at my office. I have allowed opened up all TCP ports between my desktop and the ...
2
votes
1answer
350 views

Why is there no local MBeanServer if Tomcat runs as a Windows service?

If Tomcat runs as a Windows service (created using the Windows Tomcat installer) you can't simply enable JMX using -Dcom.sun.management.jmxremote. You also need to set ...
3
votes
1answer
143 views

In an Apache Tomcat application, do MBean fields need to be volatile/synchronized for JMX updates to appear in other threads?

I've been exposing beans in our Spring web applications in case we need to make configuration changes on the fly. Recently I've been reviewing concurrency and I started to wonder what happens in other ...
2
votes
1answer
114 views

How to get to the same JMX MBean server from within 2 Tomcats

i'm a bit of a noob with JMX and servers... I have a multi-node configuration (basically 2 nodes) and i'm creating and registering MBeans on the MBeanServer in both of them. The problem is the ...
0
votes
3answers
1k views

How to get memory usage of tomcat 7 using JMX API?

is it possible to get the memory usage statistics of a tomcat server using JMX API . Which Mbean can provide me this info ? i am stuck at the formation of ObjectName in the below code JMXServiceURL ...
0
votes
2answers
665 views

Getting service status from Tomcat JMX by command prompt

I've been searching on the internet and I found something I need these days. But having differencies to use it. I want to learn status of Tomcat service by a command. And I believe Tomcat haven't got ...
6
votes
2answers
344 views

Howto Monitor several web applications (with JMX) on a Tomcat server?

Is there a way to monitor CPU and Memory consumption of an individual web application on a Tomcat server? I have Tomcat opening all the web applications under its JVM, so I only see one JVM and ...
0
votes
1answer
148 views

Error connecting to Hornetq from Tomcat

I'm having this error when I have a standalone Hornetq running I'm trying to connect to it from tomcat. I get this error : javax.management.InstanceNotFoundException: ...
0
votes
1answer
351 views

Tomcat JMX/RMI: How server interface is chosen?

I enable JMX server and JMX Registry in Tomcat using <Listener className="org.apache.catalina.mbeans.JmxRemoteLifecycleListener" rmiRegistryPortPlatform="10001" rmiServerPortPlatform="10002" ...
2
votes
2answers
605 views

Can't stop tomcat normally when I configure jmxremote

I added a jmxremote configuraiton in the catalina.bat: set JAVA_OPTS=-Dcom.sun.management.jmxremote.port=9004 -Dcom.sun.management.jmxremote.ssl=false ...
0
votes
1answer
462 views

Tomcat Thread Monitoring Mbeans Description

In thread related Mbeans of Tomcat I see under Catalina.ThreadPool. there are different attributes viz. maxThreads, currentThreadCount, currentThreadsBusy etc. So, where can I get the description of ...
3
votes
1answer
2k views

Custom MBean in Tomcat - cannot find javaURLContextFactory when creating InitialContext

I've written a custom MBean that deploys in Tomcat 6. One of its tasks is to query a database value. I'm doing this by loading up the database resource using JNDI - the resource is defined in Tomcat's ...
0
votes
1answer
389 views

How to access a JMX Mbean from a tomcat website?

I have a web service that exposes an mbean. I am able to view that mbean using jconsole. Now I need that function exposed on a new tomcat website.
1
vote
1answer
333 views

Is it possible to get Free/Total/Max memory like Tomcat Manager tell with JMX?

With tomcat 5/6 and JMX enabled, it is possible to get how many free memory is available for monitoring propurses ? I revised Template_Tomcat from zapcat template, but I didn't see any parameter ...
1
vote
1answer
572 views

Tomcat: What's the meaning of a connector's “processingTime”?

What the meaning of Tomcat 6's MBean Catalina:type=GlobalRequestProcessor,name=http-0.0.0.0-8080 for the attribute processingTime ? As far as I understand this, it means the processing time of a ...
4
votes
1answer
3k views

How to change tomcat jmx password's file permission

I am trying to secure JMX access on my local tomcat instance hosted on Windows platform. I have created access and password files and plugged those using the following VM arguments: ...
2
votes
0answers
525 views

Connect to a Tomcat server on the same subnet with Java JMX

I have a problem with my Tomcat JMX connection. I have two hosts (i.e host1.mydomain.com, host2.mydomain.com) which are attached to the same subnet. On both of these machines the ...
4
votes
1answer
860 views

Monitor c3p0 (with hibernate and Tomcat) with JConsole

The Web App is a Struts application (no spring) using c3p0 with Hibernate and it's in Tomcat 6. Both Hibernate and c3p0 jars are in the {WEB_APP}/WEB-INF/lib folder. In Tomcat the jmx remote is ...

1 2