1 Reply Latest reply on Feb 16, 2018 6:44 AM by jayshreedatta

    Disable JMX monitoring in Jboss AS 7

    doyyan

      Greetings Dear developers,

       

      Is it possible to disable JMX monitoring in JBoss AS 7?

       

      We have architected not to use JMX as a tool to control Production.

      But we found that it consumes a lot of the heap as it starts by default.

      Is there a way to permanently disable it?

       

      Best regards

        • 1. Re: Disable JMX monitoring in Jboss AS 7
          jayshreedatta

          Hi,

           

          - You can disable JMX either by removing the remote connection configuration, or removing the JMX subsystem entirely.

          - Use below CLI commands :

           

          - Remove the Remote Connector from the JMX Subsystem:

            ~~~

            /subsystem=jmx/remoting-connector=jmx/:remove

            ~~~

           

          - Remove the JMX Subsystem:

            ~~~

            /subsystem=jmx/:remove

            ~~~

           

          Regards,

          Jayshree