博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jprofiler9.1.1 安装与配置
阅读量:5286 次
发布时间:2019-06-14

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

一、安装部分

安装包:

1、jprofiler_linux_9_1_1.rpm

2、jprofiler_windows-x64_9_1_1.exe

  • 需要注意的是,Linux 和 Windows 安装的版本号必须一致

在 Linux 安装 jprofiler9 完成;在 Windows 安装 jprofiler9 完成;--安装非常容易,在网上搜索一堆

二、配置部分

1、在 Win 中打开JP

1、Follow me:

以下都是简单对照选择,看到什么像就选择:

3、Application Server:

查看系统、应用等所需要的相关信息可参考 -- http://www.cnblogs.com/snooper/p/8497170.html

4、Linux X86/AMD64

 5、JVM vendor

6、一会再连接

 7、填写所需要监控的 Linux 服务器 IP地址(这里不需要填写端口)

 

8、 找到 JP 在 Linux 中的安装路径

1 [root@test1 bin]# whereis jprofiler2 jprofiler: /usr/local/bin/jprofiler /usr/local/jprofiler9.1 /opt/jprofiler9/bin/jprofiler.vmoptions /opt/jprofiler9/bin/jprofiler /opt/jprofiler9/bin/jprofiler.jar

填写  JP 在 Linux 中 正确的安装路径

 

 9、这里填写的是项目的启动脚本地址,也就是说,这得先将 Linux 服务器上的项目启动脚本下载到 Windows ,然后再指定:

记下这个路径,后面还会用到;

如下:/usr/local/tomcat/tomcat_jdt/bin/startup.sh 就是所需要的脚本文件,将其下载到 Windows ;
 
1 [root@test1 ~]# cd /usr/local/tomcat/tomcat_jdt/bin/ 2 [root@test1 bin]# ll 3 total 1952 4 -rw-r--r--. 1 root root   26826 Jan 18  2017 bootstrap.jar 5 -rw-r--r--. 1 root root   13007 Jan 18  2017 catalina.bat 6 -rwxr-xr-x  1 root root   20963 Jul  6  2017 catalina.sh 7 -rwxr-xr-x. 1 root root   20837 Jan 18  2017 catalina.sh.bak 8 -rw-r--r--. 1 root root    1647 Jan 18  2017 catalina-tasks.xml 9 -rw-r--r--. 1 root root   24283 Jan 18  2017 commons-daemon.jar10 -rw-r--r--. 1 root root  204944 Jan 18  2017 commons-daemon-native.tar.gz11 -rw-r--r--. 1 root root    2040 Jan 18  2017 configtest.bat12 -rwxr-xr-x. 1 root root    1922 Jan 18  2017 configtest.sh13 -rwxr-xr-x. 1 root root    7888 Jan 18  2017 daemon.sh14 -rw-r--r--. 1 root root    2091 Jan 18  2017 digest.bat15 -rwxr-xr-x. 1 root root    1965 Jan 18  2017 digest.sh16 -rw-r--r--. 1 root root 1159554 Jan 18  2017 EZHTTP.zip17 -rw-r--r--. 1 root root    3430 Jan 18  2017 setclasspath.bat18 -rwxr-xr-x. 1 root root    3547 Jan 18  2017 setclasspath.sh19 -rw-r--r--. 1 root root    2020 Jan 18  2017 shutdown.bat20 -rwxr-xr-x. 1 root root    1902 Jan 18  2017 shutdown.sh21 -rw-r--r--. 1 root root    2022 Jan 18  2017 startup.bat22 -rwxr-xr-x  1 root root    2159 Mar 10 17:47 startup_jprofiler.sh23 -rwxr-xr-x. 1 root root    1904 Jan 18  2017 startup.sh24 -rw-r--r--. 1 root root   38197 Jan 18  2017 tomcat-juli.jar25 -rw-r--r--. 1 root root  388787 Jan 18  2017 tomcat-native.tar.gz26 -rw-r--r--. 1 root root    4021 Jan 18  2017 tool-wrapper.bat27 -rwxr-xr-x. 1 root root    5024 Jan 18  2017 tool-wrapper.sh28 -rw-r--r--. 1 root root    2026 Jan 18  2017 version.bat29 -rwxr-xr-x. 1 root root    1908 Jan 18  2017 version.sh

10、默认 

 11、一会再启动

 

 12、完成后,就会加出一项了

13、到此,配置完成;但尚未可以启动,还得继续:

14、打开本机 D:\jp 会看到生成了一个新的文件 startup_jprofiler.sh

15、将 startup_jprofiler.sh 上传到 Linux 服务器的项目应用的 /usr/local/tomcat/tomcat_jdt/bin 下,并授予可执行的权限

1 [root@test1 bin]# cd /usr/local/tomcat/tomcat_jdt/bin2 [root@test1 bin]# chmod +x startup_jprofiler.sh

16、终极配置到此完成!

17、先关闭当前项目的 Tomcat ,然后 通过上传的脚本文件 startup_jprofiler.sh 来启动项目

1  [root@test1 bin]# cd /usr/local/tomcat/tomcat_jdt/bin2  [root@test1 bin]# ./shutdown.sh3  [root@test1 bin]# ./startup_jprofiler.sh

18、在 jprofiler 点击 Start 启动吧

 

连接成功示例图

 

 

  •  遇到的问题:

最容易遇到的问题是点击 Start 启动时,报错:

Could not find agent library /opt/jprofiler9/bin/linux-x86/libjprofilerti.so

解决方法:

 cd /usr/local/tomcat/tomcat_jdt/bin/startup_jprofiler.sh

找到

1 ...2 # The following lines have been added by the3 # application server integration wizard of JProfiler4 5 CATALINA_OPTS="-agentpath:/opt/jprofiler9/bin/linux-x86/libjprofilerti.so=port=8849,nowait $CATALINA_OPTS"6 export CATALINA_OPTS7 8 # end of modifications9 ...

将 linux-x86 修改为 linux-x64 ,修改完成后,应为:

1 ...2 # The following lines have been added by the3 # application server integration wizard of JProfiler4 5 CATALINA_OPTS="-agentpath:/opt/jprofiler9/bin/linux-x86/libjprofilerti.so=port=8849,nowait $CATALINA_OPTS"6 export CATALINA_OPTS7 8 # end of modifications9 ...

再次连接,OK,成功。

 

转载于:https://www.cnblogs.com/snooper/p/8541174.html

你可能感兴趣的文章
SPCE061A学习笔记
查看>>
sql 函数
查看>>
hdu 2807 The Shortest Path 矩阵
查看>>
熟悉项目需求,要知道产品增删修改了哪些内容,才会更快更准确的在该项目入手。...
查看>>
JavaScript 变量
查看>>
java实用类
查看>>
smarty模板自定义变量
查看>>
研究称90%的癌症由非健康生活习惯导致
查看>>
命令行启动Win7系统操作部分功能
查看>>
排序sort (一)
查看>>
Teamcenter10 step-by-step installation in Linux env-Oracle Server Patch
查看>>
Struts2学习(三)
查看>>
Callable和Runnable和FutureTask
查看>>
GitHub 多人协作开发 三种方式:
查看>>
文本域添加编辑器
查看>>
Yum安装MySQL以及相关目录路径和修改目录
查看>>
java获取hostIp和hostName
查看>>
关于web服务器和数据库的各种说法(搜集到的)
查看>>
C# Stream 和 byte[] 之间的转换
查看>>
OMG: daily scrum nine
查看>>