本文主要是介绍reids监控软件--redisMonitor,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.下载redisMonitor代码
地址:https://github.com/litiebiao2012/redis-monitor
2.将代码导入到eclipse中
3.修改redis节点配置:/redis-monitor/src/main/resources/Redis-Server-Config.xml
<?xml version="1.0" encoding="UTF-8"?>
<Redis-Server-Config><Redis-Servers><Redis-Server uuid="0101"><name>userWriter</name><description>用户写服务</description><host>192.168.100.206</host><port>6379</port><maxActive>300</maxActive><maxIdle>50</maxIdle><maxWait>3000</maxWait><testOnBorrow>true</testOnBorrow><isMaster>true</isMaster><Slaves><slave uuid="0102"><name>userRead</name><description>用户读服务</description><host>192.168.100.206</host><port>6379</port><maxActive>300</maxActive><maxIdle>50</maxIdle><maxWait>3000</maxWait><testOnBorrow>true</testOnBorrow><isMaster>false</isMaster></slave></Slaves></Redis-Server></Redis-Servers>
</Redis-Server-Config>
对应修改自己redis的IP端口。
4.运行/redis-monitor/build.xml编译 (此步骤可以略过)
5.运行redis-monitor-master\script\shell\start.bat
(linux需运行redis-monitor-master\script\shell\start.sh ,记得修改执行权限)
由于默认jetty使用的是8888端口,记得不要冲突
6.浏览器访问http://127.0.0.1:8888 界面如下:
这篇关于reids监控软件--redisMonitor的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!