jconsole 连接 wildfly 10 监控

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

输入用户名/密码

连接即可。

参考:


2down vote

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.

时间: 2024-09-30 14:58:21

jconsole 连接 wildfly 10 监控的相关文章

springboot+druid连接池及监控配置

1. 问题描述 阿里巴巴的数据库连接池Druid在效率与稳定性都很高,被很多开发团队使用,并且自带的Druid监控也很好用,本章简单介绍下springboot+druid配置连接池及监控. 2. 解决方案 2.1 pom.xml springboot 已经有druid的starter,但是好像有点问题,不知道为什么没拿到jar包,有可能是网络问题,还是使用了原生的druid gav. <dependency> <groupId>com.alibaba</groupId>

jconsole 连接 eclipse启动项目

eclipse 启动java项目默认没有开启jmx远程查看功能,如果需要看项目运行的线程内存使用量等信息,可以在eclipse启动参数中增加: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8011 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false 如图: 接着通过jconsol

Linux上安装部署WildFly 10

WildFly 曾用名:JBoss Application Server ,红帽公司宣布 JBoss AS 的继任者 WildFly,WildFly 将推动下一代应用服务器技术的发展,这个项目的名字是 JBoss.org 社区成员在 2012 年底投票产生. WildFly 将继续保留 JBoss 企业应用平台并定位一些关键的中间件技术,包括更灵活和更先进的应用开发,实现开放混合云和 Java EE 7. 实验平台:CentOS 7.2 软件: wildfly-10.0.0.Final.zip 

jconsole 连接 eclipse启动项

eclipse 启动java项目默认情况下不开启jmx远程观看,假设需要看看内存使用情况对项目执行的线程等信息,能eclipse添加启动参数: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8011 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false 如图: 接着通过jconsol

Druid连接池及监控在spring中的配置

Druid连接池及监控在Spring配置如下: [html] view plaincopy <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close"> <!-- 基本属性 url.user.password --> <property 

wildfly 10上使用最新的 Hibernate ORM OGM

ORM是关系型数据库连接:ogm是No sql数据库连接,Mongo, redis等. 1,下载ogm zip包,解压到wildfly_home\modules\system\layers\base, ogm模块在org\hibernate\ogm下 2,下载orm zip,同样解压.新增版本是5.1 3,在文件\wildfly-10.0.0.Final\modules\system\layers\base\org\hibernate\ogm\5.1\module.xml 注释掉 <module

[转帖]Jprofiler远程连接linux项目监控

Jprofiler远程连接linux项目监控 https://blog.csdn.net/junzhen_chen/article/details/72911427 原创junzhen_chen 发布于2017-06-08 11:12:18 阅读数 2460 收藏展开 1     1.本地系统下安装windows版Jprofiler1.1     版本:jprofiler_windows-x64_9_1_1.exe1.2     操作:打开安装.exe文件,根据安装向导一路next完成安装1.3

.Net+EF连接Oracle 10、11 开发,ODAC安装配置与使用详解

Oracle数据访问组件 (ODAC)  全称:Oracle Data Access Components 优点:由于微软在.net framework4中会将System.Data.OracleClient.dll deprecated,而且就访问效率和速度而言,System.Data.OracleClient.dll与Oracle.DataAccess.dll相比,微软的确实没有oracle提供的类库有优势,所以我放弃了使用多年的 System.Data.OracleClient.dll,取

C#调用MySQL数据库(使用MySql.Data.dll连接)mysql-connector-net-6.10.4.msi

下载地址:http://dev.mysql.com/downloads/connector/net/ 安装指导 1.安装:mysql-connector-net-6.10.4.msi 其下载地址:http://dev.mysql.com/downloads/connector/net/ 在Windows10 操作系统安装mysql-connector-net-6.10.4.msi 默认是安装在C盘: 安装完后在应用工程中引用组件MySql.Data.dll. 然后在应用工程中引用组件:MySql