标签:rem oca 命令 tle tty bin port 替换 https
一、ruby源码安装
$ tar -xvzf ruby-2.2.3.tgz
$ cd ruby-2.2.3
$ ./configure
$ make
$ make install
$ruby -v
ruby 2.2.3……
二、替换rubygems为国内淘宝的
# gem sources --add https:
//ruby.taobao.org/ --remove http://rubygems.org/
# gem sources -l
三、安装redis-stat# gem install redis-stat
或
# git clone https://github.com/junegunn/redis-stat.git
# cd redis-stat/bin/
#./redis-stat --help
四、使用redis-stat
# redis-stat host localhost port 6380 overview
实时打印出host为localhost,端口为6380,redis实例的总体信息
[root@Architect redis-1.2.6]# redis-stat port 6380 overview ------- data ------ ------------ load ----------------------------- - childs - keys used-mem clients requests connections 1319 5.37M 103 44108021 (+44108021) 810 1319 5.38M 103 44108124 (+103) 810 1319 5.38M 103 44108225 (+101) 810 1319 5.39M 103 44108326 (+101) 810 1319 5.40M 103 44108427 (+101) 810 1319 5.41M 103 44108528 (+101) 810
# redis-stat host localhost port 6380 latency
输出host为localhost,端口为6380,redis服务中每个请求的响应时长
[root@Architect redis-1.2.6]# redis-stat port 6380 latency 1: 0.16 ms 2: 0.11 ms 3: 0.15 ms 4: 0.11 ms 5: 0.18 ms 6: 0.14 ms
参考资料: https://github.com/junegunn/redis-stat
转载来源于天宇骑士
标签:rem oca 命令 tle tty bin port 替换 https
原文地址:http://www.cnblogs.com/hh2737/p/6784802.html