- Java EE 8 High Performance
- Romain Manni Bucau
- 192字
- 2021-06-30 19:14:32
How to connect remotely
Connecting locally is easy since jvisualvm will just locally look up the running JVM. But for connecting remotely, you will need some more setup.
All the communication relies on JMX and, therefore, you need to set up a remote JMX connection. This relies on what is called a connector (can be seen as a small embedded JMX server). There are multiple protocols available but out of the box; they rely on RMI communications and system properties to be configured.
To add these system properties, the fastest and easiest way is as follows:
-Dcom.sun.management.jmxremote.port=1234
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false
It will enable JMX on port 1234 and disable SSL and security. For performances, we don't need more, but if you want to keep it in production, you may need to configure the security and SSL. For more details on how to do so, you can refer to the Oracle website at https://docs.oracle.com/javase/8/docs/technotes/guides/management/agent.html.
Once this is configured, you just have to right-click on the Local item in the tree on the left side, select Add JMX Connection, and fill in the related information (host/port and the potential credentials if you've configured the security).
- 電腦組裝與系統安裝
- Linux網絡管理與配置(第2版)
- VMware Horizon View 6 Desktop Virtualization Cookbook
- Ubuntu Linux操作系統
- Linux操作系統應用編程
- Linux就該這么學
- Microsoft Operations Management Suite Cookbook
- Learning Bootstrap
- 嵌入式實時操作系統μC/OS原理與實踐
- Hands-On UX Design for Developers
- VMware Horizon View Essentials
- Building Telephony Systems With Asterisk
- 大學計算機應用基礎實踐教程(Windows 7+MS Office 2010)
- 每天5分鐘玩轉Docker容器技術
- Docker容器技術與運維