搭建環境html
CenterOs 6.5linux
在安裝Redis以前,要確保系統有gcc環境。redis
# yum install gcc
一.安裝Redisvim
1.官網下載服務器
# wget http://download.redis.io/releases/redis-3.0.0.tar.gz工具
2.解壓:性能
# tar -zxvf redis-3.0.0.tar.gz學習
3.進入解壓後的目錄並編譯測試
# cd redis-3.0.0命令行
# make
4.安裝到指定目錄
4.1 檢查包包是否正常。
# make test cd src && make test make[1]: Entering directory `/root/program/redis-3.0.0/src' You need tcl 8.5 or newer in order to run the Redis test make[1]: *** [test] Error 1 make[1]: Leaving directory `/root/program/redis-3.0.0/src' make: *** [test] Error 2
須要安裝 tcl 8.5 或以上版本,官網傳送門
http://www.linuxfromscratch.org/blfs/view/cvs/general/tcl.html
(不過不安裝這個也能夠繼續下面步驟)
安裝完tcl後 回到主題,繼續安裝Redis
把Redis安裝到指定目錄
# make PREFIX=/usr/local/redis/ install
爲了方便管理,這裏把redis-3.0.0 目錄下的redis.conf文件複製到安裝目錄下
# cp redis.conf /usr/local/redis/bin/
5.啓動redis
redis默認啓動端口好爲 6379
打開Redis後臺啓動模式 須要把redis.conf 文件的 daemonize 改成yes
# vim redis.conf
################################ GENERAL #####################################
# By default Redis does not run as a daemon. Use 'yes' if you need it.
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
daemonize yes
啓動
# redis-server redis.conf
使用redis自帶客戶端測試
[root@localhost bin]# redis-cli
127.0.0.1:6379>
關於學習redis很不錯的博文,須要的同窗點擊傳送
http://www.cnblogs.com/stephen-liu74/archive/2012/03/12/2348935.htm
6. 進入安裝目錄,查看安裝列表
[root@localhost bin]# ll
total 2692
-rwxr-xr-x 1 root root 236070 Mar 7 06:50 redis-benchmark
-rwxr-xr-x 1 root root 22169 Mar 7 06:50 redis-check-aof
-rwxr-xr-x 1 root root 45355 Mar 7 06:50 redis-check-dump
-rwxr-xr-x 1 root root 341405 Mar 7 06:50 redis-cli
lrwxrwxrwx 1 root root 12 Mar 7 06:50 redis-sentinel -> redis-server
-rwxr-xr-x 1 root root 2099834 Mar 7 06:50 redis-server
安裝目錄下文件介紹
文件名 | 說明 |
redis-benchmark | Redis性能測試工具 |
redis-check-aof | AOF文件修復工具 |
redis-check-dump | RDB文件修復工具 |
redis-cli | Redis命令行客戶端 |
redis-server | Redis服務器 |
redis-sentinel | Redis集羣管理工具 |