您现在的位置是:网站首页 > 学无止境
centos 7.4源码安装redis
Linux php redis centos 7.4 redis安装Redis及配置
linux redis源码: http://download.redis.io/releases/ 查看列表
下载最新版本:redis-4.0.9.tar.gz
wget http://download.redis.io/releases/redis-4.0.9.tar.gz
tar -zxvf redis-4.0.9.tar.gz
cd redis-4.0.9
make install
安装成功后 make[1]: Leaving directory `/root/redis-4.0.9/src'
vim redis.conf ## daemonize no ##改 yes 守护进程开启redis
cd src
./redis-server ../redis.conf
linux 扩展php redis
扩展官方 : http://pecl.php.net/package/redis
1 安装phpize
yum -y install php56w-devel
2 下载扩展源码包,直接用wget
wget http://pecl.php.net/get/redis-4.0.2.tgz
tar -zxvf redis-4.0.2.tgz
cd redis-4.0.2
3 开始编译php扩展
/usr/bin/phpize
4 配置环境
./configure --with-php-config=/usr/bin/php-config
5 编译
make && make install
编译完成后显示:
Build complete.
Don't forget to run 'make test'.
Installing shared extensions: /usr/lib64/php/modules/
cd /usr/lib64/php/modules/ 文件夹,发现redis.so的扩展
6 vim /etc/php.ini 最后 :添加下面的扩展
[redis]
extension=redis.so
7 重启服务器
systemctl restart nginx.service
systemctl restart php-fpm.service
最后查看phpinfo,显示如下,代表安装成功:
上一篇:C语言 数组 增加查询操作
下一篇:Linux系统常用命令及故障解决