一、安裝Redisphp
1.1 若是沒有安裝wget,安裝wgetc++
yum install wget
1.2 在http://redis.io/download頁面查看redis版本,並下載安裝git
wget http://download.redis.io/releases/redis-3.2.0.tar.gz
1.3 解壓,並進入解壓目錄進行編譯。編譯成功後會在redis-3.2.0目錄下生成相關文件github
$ tar xzf redis-3.2.0.tar.gz $ cd redis-3.2.0 $ make
若是make時沒有發現gcc,那麼安裝gccredis
yum install gcc gcc-c++ kernel-devel
再次make,若是出現以下錯誤服務器
zmalloc.h:50:31: error: jemalloc/jemalloc.h: No such file or directory zmalloc.h:55:2: error: #error "Newer version of jemalloc required"
則使用以下命令進行make測試
make MALLOC=libc
1.4 在文件夾redis-3.2.0下啓動redis服務,輸入以下命令後回車。ui
./src/redis-server redis.conf &
1.4 檢測spa
#檢測後臺進程是否存在 ps -ef |grep redis #檢測6379端口是否在監聽 netstat -lntp | grep 6379 #使用`redis-cli`客戶端檢測鏈接是否正常 ./src/redis-cli 127.0.0.1:6379> keys * (empty list or set) 127.0.0.1:6379> set key "hello world" OK 127.0.0.1:6379> get key "hello world"
1.5 中止服務rest
#使用客戶端 ./src/redis-cli shutdown #由於Redis能夠妥善處理SIGTERM信號,因此直接kill -9也是能夠的 kill -9 PID
二、安裝Redis的PHP擴展
2.1 安裝phpize
yum install php-devel
2.2 下載擴展源碼包,直接用wget
#wget下載github上的文件 wget https://github.com/nicolasff/phpredis/archive/master.zip
2.3 若是沒裝unzip,須要先安裝unzip
yum install unzip
2.4 解壓master.zip
unzip master.zip
2.5 解壓目錄爲phpredis-master,進入該文件夾,開始編譯php擴展
phpize
2.6 配置環境
./configure
2.7 編譯
make && make install
編譯完成後顯示:
Build complete. Don't forget to run 'make test'. Installing shared extensions: /usr/lib64/php/modules/
進入/usr/lib64/php/modules/文件夾,發現redis.so的擴展
2.8 修改/etc/php.ini,添加下面的擴展
extension=redis.so
2.9 重啓服務器
service httpd restart
最後查看phpinfo,顯示以下,表明安裝成功:
三、PHP代碼測試
<?php $redis = new Redis(); $redis->connect('127.0.0.1', 6379); $redis->set('name','zhou', 10); $key_1 = $redis->get('name'); echo $key_1; ?>