共计 2320 个字符,预计需要花费 6 分钟才能阅读完成。
为了方便测试,我们在一台机器上安装所需有的软件
部署时间:2019-03-25
需要的软件及版本
软件名称
版本号
pinpoint 系列 (web, collector, agent)
1.8.2(当前 latest)
tomcat
7.0.93
hbase
2.1.3
下载所需软件
下载 pinpoint
wget https://github.com/naver/pinpoint/releases/download/1.8.2/pinpoint-agent-1.8.2.tar.gz
wget https://github.com/naver/pinpoint/releases/download/1.8.2/pinpoint-collector-1.8.2.war
wget https://github.com/naver/pinpoint/releases/download/1.8.2/pinpoint-web-1.8.2.war
下载 pinpoint 针对 hbase 数据库初始化文件
wget https://raw.githubusercontent.com/naver/pinpoint/master/hbase/scripts/hbase-create.hbase
安装基础软件
安装 tomcat
详见 https://qianmoq.com/tomcat/tomcat_an_zhuang_bu_shu.html
安装 HBase
详见 https://qianmoq.com/hbase/hbase_an_zhuang_bu_shu.html
初始化 ponpint 数据库
登录到 hbase 服务器中执行以下命令
hbase-2.1.3/bin/hbase shell ./hbase-create.hbase
安装 pinpoint-collector
修改 pinpoint-collector.properties 配置文件
vim apache-tomcat-7.0.93/webapps/ROOT/WEB-INF/classes/pinpoint-collector.properties
暂时修改 cluster.enable 配置为 false
修改 hbase.properties 配置文件
vim apache-tomcat-7.0.93/webapps/ROOT/WEB-INF/classes/hbase.properties
hbase.client.host 修改为 hbase 服务地址
hbase.client.port 修改为 hbase 的 zk 地址
其他配置先不变使用默认即可
重启 tomcat 服务
apache-tomcat-7.0.93/bin/shutdown.sh
apache-tomcat-7.0.93/bin/startup.sh
安装 pinpoint-web
修改 apache-tomcat-7.0.93/webapps/ROOT/WEB-INF/classes/pinpoint-web.properties 配置文件
vim apache-tomcat-7.0.93/webapps/ROOT/WEB-INF/classes/pinpoint-web.properties
暂时修改 cluster.enable 配置为 false
修改 hbase.properties 配置文件
vim apache-tomcat-7.0.93/webapps/ROOT/WEB-INF/classes/hbase.properties
hbase.client.host 修改为 hbase 服务地址
hbase.client.port 修改为 hbase 的 zk 地址
其他配置先不变使用默认即可
重启 tomcat 服务
apache-tomcat-7.0.93/bin/shutdown.sh
apache-tomcat-7.0.93/bin/startup.sh
部署 pinpoint-agent
解压 pinpoint-agent-1.8.2.tar.gz 文件
tar -xvzf pinpoint-agent-1.8.2.tar.gz -C pinpoint-agent
使用 pinpoint 监听 collector,web 的 tomcat 容器
修改 pinpoint.config 配置文件
vim pinpoint-agent/pinpoint.config
修改 profiler.collector.ip 为 collector 服务的地址
其他的配置暂时不修改
配置 tomcat 使用 pinpoint 监听服务
修改 catalina.sh 启动文件
vim apache-tomcat-7.0.93/bin/catalina.sh
在文件中增加以下配置
CATALINA_OPTS=”$CATALINA_OPTS -javaagent:/hadoop/dc/apm/pinpoint-agent/pinpoint-bootstrap-1.8.2.jar”
CATALINA_OPTS=”$CATALINA_OPTS -Dpinpoint.agentId=pinpoint-agent-001″
CATALINA_OPTS=”$CATALINA_OPTS -Dpinpoint.applicationName=PinpointWebServer”
pinpoint.agentId: 只要保证每个应用不重复即可 pinpoint.applicationName: 现在是 pinpoint 中的名称, 能去分开即可
重启 tomcat 服务
apache-tomcat-7.0.93/bin/shutdown.sh
apache-tomcat-7.0.93/bin/startup.sh
浏览器打开 pinpoint 的 web 页面即可看到监控信息