cat安装使用
需要准备的文件及内容分别为:
- OS Linux or Wiondow
- 数据库 mysql
- 应用服务器 tomcat 端口号配置为:9996
- 准备操作系统配有占用的端口 2280
1.创建目录
前提:需要创建 /data/appdatas/cat 、 /data/applogs/cat 启动cat的用户必须有 可读 可写的权限 因为cat 日志文件和数据文件都存在在以上目录结构中
1.1 添加配置文件在 /data/appdatas/cat 目录中:
client.xml 客户端配置文件
server.xml 服务端配置文件
<storage local-base-dir="/data/appdatas/cat/bucket/" max-hdfs-storage-time="15" local-report-storage-time="7" local-logivew-storage-time="7"> </storage> <console default-domain="Cat" show-cat-domain="true"> <remote-servers>192.168.1.131:9996</remote-servers> </console> <ldap ldapUrl="ldap://192.168.50.11:389/DC=dianpingoa,DC=com"/>
配置的说明请参考 github中 Cat技术入门总结-0.1.0.doc
datasources.xml 数据库连接配置文件
3 1s 10m 1000 com.mysql.jdbc.Driver root 123abc 3 1s 10m 1000 com.mysql.jdbc.Driver root 123abc
2.将 cat.war放入准备好的tomcat中
将cat.war 放入tomcat 目录 webapps 下 启动 访问路径为: http://localhost:9996/cat
3.配置客户端路由校验
输入以下地址配置:http://localhost:9996/cat/s/config?op=routerConfigUpdate 修改 cat所在tomcat的ip
<?xml version="1.0" encoding="utf-8"?>
<router-config backup-server="127.0.0.1" backup-server-port="2280">
<default-server id="192.168.1.131" weight="1.0" port="2280" enable="true"/>
</router-config>
按照你的服务端cat运营环境配置好路径和端口
4.参考网址:
cat在我的测试项目中的使用
监控sql: huaying-common com.huaying.common.web.plugin.cat.CatMybatisPlugins
涉及到的配置如下: 配置文件 mybatis-config.xml 配置内容:
监控spring mvc:huaying-common com.huaying.common.web.interceptor.CatInterceptor
涉及到的配置如下: 配置文件 spring-mvc.xml 配置内容: mvc:interceptor <mvc:mapping path="/**"/>
监控dubbo: huaying-common com.huaying.common.web.dubbo 包下边所有类
涉及到的配置如下: 配置文件 spring-dubbox.xml 配置内容: <dubbo:consumer filter="consumerCat" />