一、tigase配置
在etc/init.properties中添加
--monitoring=jmx:9050
如果需要用到远程的jmx的话,编辑etc/tigase.conf在JAVA_OPTIONS=中增加
-Djava.rmi.server.hostname=[tigase的ip]
二、jmx工具
常用的jmx连接的工具有oracle的java visualvm ,orcle java mission control,jconsole等,这些在网上有很多介绍了,有需要的可以自己去找下用法。我这里用的是tigase monitor。
下载地址:https://projects.tigase.org/attachments/download/1291/tigase-monitor-1.0.0-SNAPSHOT-b80-dist.zip
如果tigase不在本地的话编辑etc/monitor.properties
nodes= blue:[tigase的ip或者域名]
这里的blue指的是颜色你可以改成其他的。
linux的直接运行bin/monitor.sh就可以了
windows的在软件根目录新建一个monitor.bat,添加内容
java -jar libs/tigase-monitor.jar --init etc/monitor.properties
再运行monitor.bat就可以了。