为什么80%的码农都做不了架构师?>>>
RedisLive 用来监控Redis,便于redis性能分析
安装步骤:
1.安装pip(代码参考:https://github.com/pypa/pip)
官方网站:https://pypi.python.org/pypi/pip,下载8.1.2
wget https://pypi.python.org/pypi/pip/...
tar zxvf pip.8.1.2.tar.gz
cd pip-8.1.2
python setup.py install
2.安装支持库
cat /redhat-release
// 如果是6.x版本 执行
pip install tornado=2.1
// 如果是7.x版本 执行
pip install tornadopip install redispip install python-dateutil
3.安装RedisLive
git clone https://github.com/kumarnitin/RedisLive.git cd RedisLive/srcvim redis-live.conf
修改redis-live.conf
{"RedisServers":[{"server": "127.0.0.1","port" : 6379,"password" : "redis"}],"DataStoreType" : "redis","RedisStatsServer":{"server" : "127.0.0.1","port" : 6379,"password" : "redis"},"SqliteStatsStore" :{"path": "/root/RedisLive/src/db/redislive.sqlite"}
}
4.运行RedisLive
./redis-monitor.py --duration=120 & ./redis-live.py &
5.浏览器打开 http://localhost:8888/index.html