Uploaded image for project: 'ZABBIX BUGS AND ISSUES'
  1. ZABBIX BUGS AND ISSUES
  2. ZBX-14371

Ability to monitor WebLogic server

XMLWordPrintable

    • Icon: Documentation task Documentation task
    • Resolution: Fixed
    • Icon: Minor Minor
    • 4.0 (plan)
    • None
    • Java gateway (J)
    • Team C
    • Sprint 46, Nov 2018
    • 0

      Java gateway server only support RMI protocol, but WebLogic doesn't support RMI. It's necessary to use IIOP protocol.
      http://docs.oracle.com/cd/E13222_01/wls/docs90/jmx/accessWLS.html

      Also, there is a difference in environment parameter of JMXConnectorFactory.connect method for WebLogic JMX

      Current java gateway code:

      env = new HashMap<String, String[]>();
      env.put(JMXConnector.CREDENTIALS, new String[]

      {username, password}

      );

      Sample code from WebLogic documentation:

      Hashtable h = new Hashtable();
      h.put(Context.SECURITY_PRINCIPAL, username);
      h.put(Context.SECURITY_CREDENTIALS, password);
      h.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES, "weblogic.management.remote");

            vjaceslavs Vjaceslavs Bogdanovs
            kodai Kodai Terashima
            Team C
            Votes:
            2 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: