Uploaded image for project: 'ActiveMQ Classic'
  1. ActiveMQ Classic
  2. AMQ-4870

Bug in the WebConsole RemoteJMX connectivity

Attach filesAttach ScreenshotVotersWatch issueWatchersCreate sub-taskLinkCloneUpdate Comment AuthorReplace String in CommentUpdate Comment VisibilityDelete Comments
    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Duplicate
    • 5.8.0
    • 5.10.0
    • None
    • None

    Description

      We are using a standalone ActiveMQ WebConsole that connects remotely to the broker using JMX.

      I have noticed that a bug has been introduced by the JMX MBean naming changes that came with ActiveMQ 5.8. It prevents the webconsole to connect to the remote broker as it doesn't "see" the broker MBean.

      Bug affects ActiveMQ 5.8/5.9.

      Faulty code in activemq-web module in class org.apache.activemq.web.RemoteJMXBrokerFacade

      protected Set<ObjectName> findBrokers(MBeanServerConnection connection) throws IOException, MalformedObjectNameException {
      if (this.brokerName == null) {
          name = new ObjectName("org.apache.activemq:type=Broker,brokerName=*");
        } else {
          name = new ObjectName("org.apache.activemq:brokerName="
      					+ this.brokerName + ",Type=broker");
        }
      ...
      

      }

      When brokerName hasn't been specified, the remote JMX connection works OK.

      When the brokerName has been specified, the remote JMX connection fails.

      Fix is to replace the second name definition with the proper ObjectName :

      name = new ObjectName("org.apache.activemq:type=Broker,brokerName=" + this.brokerName);
      

      Attachments

        Issue Links

        Activity

          This comment will be Viewable by All Users Viewable by All Users
          Cancel

          People

            Unassigned Unassigned
            joeluo Joe Luo
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Slack

                Issue deployment