Websphere 7.X. JMX, how to enable all operations in JConsole?

When I open JConsole (using the running .bat file), inside the AppManagement Mbean node I see a lot of operations. But most of them are disabled, only one is enabled - the "MoveModule" operation. How to enable all JMX operations under AppManagement Mbean node (for example, “Install application”, reinstall, remove, etc.)?

Thanks.

+2
source share
1 answer

It's impossible. JConsole allows you to call methods that have only parameters with simple types. This includes primitive types, wrapper classes for primitive types and strings. Methods that have parameters with other types cannot be called because JConsole does not know how to instantiate these types.

+2
source

Source: https://habr.com/ru/post/923222/


All Articles