Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1660681
  • 博文数量: 391
  • 博客积分: 8464
  • 博客等级: 中将
  • 技术积分: 4589
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-13 15:12
个人简介

狮子的雄心,骆驼的耐力,孩子的执著!

文章分类

全部博文(391)

文章存档

2023年(4)

2018年(9)

2017年(13)

2016年(18)

2014年(7)

2013年(29)

2012年(61)

2011年(49)

2010年(84)

2009年(95)

2008年(22)

分类: Java

2011-06-15 12:52:59

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

1.测试环境

服务器:CentOS release 5.4 x86_64(内核版本 2.6.18-164.el5),Tomcat6.0.18,Sun JDK Java(TM) SE Runtime Environment (build 1.6.0_07-b06),Jprofiler_linux_6_2_3 for linux(安装包:jprofiler_linux_6_2_3.sh)
客户端:Windows XP,JProfiler 6.2.3 for windows(安装包:jprofiler_windows_6_2_3.exe)

2.JProfiler软件下载地址

3.客户端 JProfiler 安装 略

4.服务器端 JProfiler 安装:
把 jprofiler_linux_6_2_3.sh 上传到到服务器,假设路径为 /opt/jprofiler

# cd /opt/jprofiler
# chmod +x *.sh
# ./jprofiler_linux_6_2_3.sh -c
按照提示来安装,提示都很简单,不在多说。安装路径选择 /opt/jprofiler6

注意,这里的 -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/jprofiler6 ;next
6). 选择服务器的 JDK 环境,这里是:Sun,1.6.0.07,hotspot;next
7). 输入端口:这里是默认值 8849;next
8). 选择启动模式:这里选第一种 wait for a connection from the jprofiler GUI;next
9). 这里会列出需要在服务器端做的配置:

6.服务器端的配置
(1)修改系统环境配置文件 /etc/profile ,增加
# JPROFILER CONF
JPROFILER_HOME=/opt/jprofiler6/bin/linux-x64
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$JPROFILER_HOME
(2)修改TOMCAT启动文件catalina.sh,添加
JAVA_OPTS="$JAVA_OPTS -server -Xms4096m -Xmx4096m -XX:PermSize=256m -XX:MaxNewSize=512m -XX:MaxPermSize=512m -Djava.awt.headless=true"
JAVA_OPTS="$JAVA_OPTS -agentlib:jprofilerti=port=8849 -Xbootclasspath/a:/opt/jprofiler6/bin/agent.jar"
 

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

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.

参考:http://hi.baidu.com/xuwanbest/blog/item/605f9f3335f05e46ac4b5f07.html
阅读(2540) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~