Recent Posts
Archives

PostHeaderIcon How to enable JMX in WebLogic?

Case

You have to enable JMX in an application deployed within WebLogic, so that to access MBeans from Java Visual VM for instance

Solution

On launching WebLogic server instance, add the following properties:

[java]-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8888 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false[/java]

Leave a Reply