I want to connect jconsole with mysql 5.1 as likes as database profiler. Is there any way to solve this problem?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JConsole is not a database profiler. It is not a profiler at all. It is just a JMX visualizer. Since each JVM has a “built-in” JMX server you can connect it to any java application. But MySQL is not a java application. It is written in C and compiled to native executable. So JConsole is just irrelevant here.
You can however get access to connection pool and MYSQL JDBC driver if you cannect JConsole to your java application (or application server) that works with MySQL DB.