设为首页 收藏本站
查看: 467|回复: 0

[经验分享] JProfiler监测远程Tomcat

[复制链接]

尚未签到

发表于 2017-1-21 11:08:15 | 显示全部楼层 |阅读模式
JProfiler监测远程Tomcat

 

  转载之http://www.2mysite.net/Article/380.aspx,转载请注明地址,谢谢!

一 软件环境
  本地客户端   :           JProfiler5.2.1破解版
  远程服务器端:           JProfiler5.2.2的linux版本+Tomcat5.5.27的linux版本+JDK1.5.0_11的linux版本。

二 本地客户端JProfiler的配置


选择红色区域标示的那一项,点“Next”。


 

三 服务器端的配置



  • 修改Tomcat启动时的配置

修改/usr/local/tomcat/bin目录下的Catalina.sh,添加下面几项到“JAVA_OPTS”中。


  • JAVA_OPTS="$JAVA_OPTS -agentlib:jprofilerti=port=8849" 

  • JAVA_OPTS="$JAVA_OPTS -Xbootclasspath/a:/opt/jprofiler5/bin/agent.jar" 



  • 修改环境变量,将JProfiler加入环境变量

修改/etc/profiler文件,在文件的末尾加入下面语句:


  • JPROFILER_HOME=/opt/jprofiler5/bin/linux-x86  

  • export LD_LIBRARY_PATH=$JPROFILER_HOME 

修改完后,不要忘记使用source /etc/profile使修改生效!
到此,服务器端得设置完成。
 

四 本地客户端建立连接并监测

首先,启动服务器端的tomcat,切换到tomcat目录下的bin目录,然后运行./startup.sh即可,然后就可以监测了。

一 软件环境
  本地客户端   :           JProfiler5.2.1破解版
  远程服务器端:           JProfiler5.2.2的linux版本+Tomcat5.5.27的linux版本+JDK1.5.0_11的linux版本。

二 本地客户端JProfiler的配置


选择红色区域标示的那一项,点“Next”。


 

三 服务器端的配置



  • 拷贝C:\Documents and Settings\Administrator\.jprofiler5\config.xml到 /opt/jprofiler5中。

  • 拷贝D:\Program Files\Apache Software Foundation\Tomcat 5.5\bin\startup_jprofiler.sh到/usr/local/tomcat/bin中。

到此,服务器端得设置完成。
 

四 本地客户端建立连接并监测

首先,启动服务器端的tomcat,切换到tomcat目录下的bin目录,然后运行./startup_jprofiler.sh即可,然后就可以在客户端连接监测了。如果连接成功,查看/usr/local/tomcat/logs目录下的catatlina.out文件会发下以下日志信息:


  • JProfiler> Protocol version 26  

  • JProfiler> Using JVMTI  

  • JProfiler> 32-bit library  

  • JProfiler> Don't wait for frontend to connect.  

  • JProfiler> Using config file /opt/jprofiler5/config.xml (id: 147)  

  • JProfiler> Listening on port: 8849.  

  • JProfiler> Native library initialized  

  • JProfiler> VM initialized  

  • JProfiler> Using dynamic instrumentation  

  • JProfiler> Time measurement: elapsed time  

  • JProfiler> CPU profiling enabled  

  • JProfiler> Hotspot compiler enabled  

  • JProfiler> Starting org/apache/catalina/startup/Bootstrap ... 

这就代表配置成功了。

************************************************************

JProfiler远程监控Tomcat
  Windows客户端的JProfiler远程监控Linux上的Tomcat

1.测试环境

服务器:RedHat Linux 3.4.3-9.EL4(内核版本 2.6.9-5.EL),Tomcat5.5.20,Sun JDK 1.5.0_09,JProfiler 4.3.2 for linux(安装包:jprofiler_linux_4_3_2.sh)
客户端:Windows XP,JProfiler 4.3.2 for windows(安装包:jprofiler_windows_4_3_2.exe)
  2.JProfiler软件下载地址 http://www.ej-technologies.com/
  3.客户端 JProfiler 安装 略
  4.服务器端 JProfiler 安装:
把 jprofiler_linux_4.3.2.sh 上传到到服务器,假设路径为 /opt/jprofiler
  # cd /opt/jprofiler
# chmod +x *.sh
# ./jprofiler_linux_4.3.2.sh -c
按照提示来安装,提示都很简单,不在多说。安装路径选择 /opt/jprofiler4
  注意,这里的 -c 意思是用字符方式来安装,如果机器上没有 X 则加上该参数.
  5.客户端连接配置
1). 运行 JProfiler 。第一次打开会有向导,忽略它。
2). 选择 Session->Integration Wizard->New Remote Integratation
3). 选择 On a remote computer;Platform of remote computer 选择 Linux x86/AMD 64;Next
4). 输入服务器 IP ;Next
5). 输入服务器上的 jprofiler 的安装路径,如 /opt/jprofiler4 ;next
6). 选择服务器的 JDK 环境,这里是:Sun,1.5.0,hotspot;next
7). 输入端口:这里是默认值 8849;next
8). 选择启动模式:这里选第一种 wait for a connection from the jprofiler GUI;next
9). 这里会列出需要在服务器端做的配置:

Integration type: [Generic application]
Selected JVM: Sun 
1.5.0 (hotspot)
Startup mode: Wait 
for JProfiler GUI

(
1) Please insert

-agentlib:jprofilerti=port=8849  -Xbootclasspath/a:/opt/jprofiler4/bin/agent.jar

into the start command of your remote application right after the java command.

(
2) Please add

/opt/jprofiler4/bin/linux-x86

to the environment variable LD_LIBRARY_PATH.

A remote session named Remote application on 
192.168.40.15 will be created that connects to a running instance of the remote application that is started with the modified start command.


  
6.服务器端的配置
(1)修改系统环境配置文件 /etc/profile ,增加

JPROFILER_HOME=/opt/jprofiler4/bin/linux-x86
export LD_LIBRARY_PATH
=$LD_LIBRARY_PATH:$JPROFILER_HOME

  
(2)修改TOMCAT启动文件catalina.sh,添加-agentlib:jprofilerti=port=8849  -Xbootclasspath/a:/opt/jprofiler4/bin/agent.jar 内容到CATALINA_OPTS中;
“-agentlib:jprofilerti=port=8849  -Xbootclasspath/a:/opt/jprofiler4/bin/agent.jar ” 此内容由客户端软件生成

CATALINA_OPTS="$CATALINA_OPTS -Xms128m -Xmx128m $JPDA_OPTS -agentlib:jprofilerti=port=8849  -Xbootclasspath/a:/opt/jprofiler4/bin/agent.jar"

  
7.Reboot Linux and startup Tomcat using startup.sh;
   The log of tomcat which is $CATALINA_HOME/logs/catalina.out will show:

 JProfiler> Protocol version 23
 JProfiler
> Using JVMTI
 JProfiler
> 32-bit library
 JProfiler
> Listening on port: 8849.
 JProfiler
> Native library initialized
 JProfiler
> Waiting for a connection from the  JProfiler GUI http://www.517sou.net/Attach/month_1001/b3rizw_160155_15.gif

  8.启动客户端软件
   点击jprofiler菜单 session>start center>Open Session
   Available session configurations中列出了刚才配置的连接,选中使用就OK了!!
  9.The log of tomcat which is $CATALINA_HOME/logs/catalina.out will show:

 JProfiler> Using dynamic instrumentation
 JProfiler
> Time measurement: elapsed time
 JProfiler
> CPU profiling enabled
 JProfiler
> Hotspot compiler enabled
 JProfiler
> Starting org/apache/catalina/startup/Bootstrap http://www.517sou.net/Attach/month_1001/b3rizw_160155_15.gif

  10.当中断JProfiler连接时
   The log of tomcat which is $CATALINA_HOME/logs/catalina.out will show:

 JProfiler> Disconnected. Waiting for reconnection.
 JProfiler
> Listening on port: 8849.

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-331530-1-1.html 上篇帖子: 解决Tomcat内存溢出 TOMCAT内存溢出及大小调整 下篇帖子: Tomcat性能参数设置
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表