博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jconsole 连接 wildfly 10 监控
阅读量:6093 次
发布时间:2019-06-20

本文共 1224 字,大约阅读时间需要 4 分钟。

1,远程wildfly服务器:

  访问:http://211.100.75.242:9990

按照提示添加用户,重启后可以登录进入。成功。

2,省事做法。本地解压wildfly服务器,进入wildfly-home/bin, 执行jconsole.bat 或者 jconsole.sh。

  选择 "Remote Process". Provide the following URL:

service:jmx:http-remoting-jmx://WildFly_Host:JMX_Port

比如: service:jmx:http-remoting-jmx://211.100.75.242:9990

输入用户名/密码

连接即可。

参考:

 

2

As far as I know, the JMX service on wildly is accessible on port 9990. From your mail, it seems that it's running at 10990 for you.

To access WildFly over JMX remotely through jconsole following are the steps you need to follow:

  1. On the wildfly server, create management user using add-user.sh.
  2. Get the jboss-cli-client.jar from the wildly server to your local laptop (from where you are planning to launch jconsole).
  3. Invoke the following from your local laptop to start jconsole:

$JAVA_HOME/bin/jconsole -J-Djava.class.path=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/jconsole.jar:/jboss-client.jar &

  1. On the jconsole pop up window which comes up on your laptop, select "Remote Process". Provide the following URL:

service:jmx:http-remoting-jmx://WildFly_Host:JMX_Port

For example, it could be : service:jmx:http-remoting-jmx://1.2.3.4:9990

  1. Provide the username and password created in step #1.
  2. Connect.

转载地址:http://trlwa.baihongyu.com/

你可能感兴趣的文章
Linux下MEncoder的编译
查看>>
spark高级排序彻底解秘
查看>>
ylbtech-LanguageSamples-PartialTypes(部分类型)
查看>>
福建省促进大数据发展:变分散式管理为统筹集中式管理
查看>>
开发环境、生产环境、测试环境的基本理解和区别
查看>>
tomcat多应用之间如何共享jar
查看>>
Flex前后台交互,service层调用后台服务的简单封装
查看>>
MySQL入门12-数据类型
查看>>
Windows Azure 保留已存在的虚拟网络外网IP(云服务)
查看>>
修改字符集
查看>>
HackTheGame 攻略 - 第四关
查看>>
js删除数组元素
查看>>
带空格文件名的处理(find xargs grep ..etc)
查看>>
centos使用docker下安装mysql并配置、nginx
查看>>
需要学的东西
查看>>
Linux 获取文件夹下的所有文件
查看>>
对 Sea.js 进行配置(一) seajs.config
查看>>
第六周
查看>>
解释一下 P/NP/NP-Complete/NP-Hard 等问题
查看>>
javafx for android or ios ?
查看>>