probe官网:http://www.lambdaprobe.org/
但是已经链接至github了:https://github.com/psi-probe/psi-probe下载psi-probe-web-3.1.0.war
-
tomcat配置./conf/user.xml
<role rolename="manager-gui "/> <!-- 用户设置密码、角色 -->
<user username="admin" password="admin" roles="manager-gui"/>下面这些配置也是必须的,否则上面设置的用户无法登陆
./conf/server.xml的Server/GlobalNamingResources下<!-- Global JNDI resources
Documentation at /docs/jndi-resources-howto.html
-->
<GlobalNamingResources>
<!-- Editable user database that can also be used by
UserDatabaseRealm to authenticate users
-->
<Resource name="UserDatabase" auth="Container"
type="org.apache.catalina.UserDatabase"
description="User database that can be updated and saved"
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
pathname="conf/tomcat-users.xml" />
</GlobalNamingResources>./conf/server.xml的Server/Service/Engine下
<!-- Use the LockOutRealm to prevent attempts to guess user passwords
via a brute-force attack -->
<Realm className="org.apache.catalina.realm.LockOutRealm">
<!-- This Realm uses the UserDatabase configured in the global JNDI
resources under the key "UserDatabase". Any edits
that are performed against this UserDatabase are immediately
available for use by the Realm. -->
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase"/>
</Realm> 部署war包
安装官方文档:
https://github.com/psi-probe/psi-probe/wiki/InstallationApacheTomcat角色及支持的特性信
https://github.com/psi-probe/psi-probe/wiki/Features#features-by-role
相关文章
- 02-17全链路监控工具pinpoint与zipkin
- 02-17网络流量监控工具iftop
- 02-17springboot监控工具 actuator
- 02-17Kafka 消费迟滞监控工具 Burrow
- 02-17服务器压测与监控工具
- 02-17服务器压测与监控工具
- 02-17Pinpoint 分布式系统性能监控工具
- 02-17JDK 监控和故障处理工具
- 02-17JDK监控和故障处理工具总结
- 02-17ANR 优化实践系列2 监控工具与分析思路