I would like to be able to use JConsole on remote WebLogic servers via the multiplexer port on SSL. Is it possible this without doing any configuration changes WebLogic? Only by adding some jars (e.g. wljmxclient.jar) or parameters to JConsole.
I've tried with variations of the following command without success:
$JAVA_HOME/bin/jconsole -J-Djava.class.path=$JAVA_HOME/lib/jconsole.jar:\
$JAVA_HOME/lib/tools.jar:$WL_HOME/server/lib/wljmxclient.jar \
-J-Djmx.remote.protocol.provider.pkgs=weblogic.management.remote -debug \
service:jmx:rmi:///jndi/iiop://server_name:7441/jmxrmi
I think that one of the problem is that the SSL is not enabled in JConsole.
EDIT: It seems that the connection string should be provided in the GUI, not in command line if the JMX service is asking for authentication.