1、centos默認的安裝源在官方centos.org上,而redis在第三方的yum源裏,因此沒法安裝,非官方的yum推薦用fedora的epel倉庫。固然也可經過配置 /etc/yum.repos.d/CentOS-Base.repo文件增長yum源。html
2、下載並安裝epelredis
[root@localhost ~]# find / -name "redis*"centos
/var/lib/redis服務器
/var/run/redis併發
/var/log/rediside
/etc/rc.d/init.d/redis工具
/etc/logrotate.d/redis性能
/etc/redis.conf測試
/usr/share/doc/redis-2.4.10
/usr/bin/redis-check-dump :用於本地數據庫檢查;檢查file.rdb 文件
/usr/bin/redis-check-aof :更新日誌檢查;檢查file.aof 文件
/usr/bin/redis-cli :Redis命令行操做工具;也能夠用telnet根據其純文本協議來操做
/usr/bin/redis-benchmark :Redis性能測試工具,測試Redis在你的系統及你的配置下的讀寫性能
/usr/sbin/redis-server :Redis服務器的daemon啓動程序
[root@localhost ~]#redis-benchmark -h localhost -p 6379 -c 100 -n 100000
100個併發鏈接,100000個請求,檢測host爲localhost 端口爲6379的redis服務器性能
[root@localhost ~]#redis-cli -h localhost -p 6379 monitor
Dump all the received requests in real time;
監控host爲localhost,端口爲6380,redis的鏈接及讀寫操做
[root@localhost ~]#redis-cli -h localhost -p 6379 info
Provide information and statistics about the server
提供host爲localhost,端口爲6380,redis服務的統計信息