php安装redis扩展
Posted it-crowd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php安装redis扩展相关的知识,希望对你有一定的参考价值。
1. 安装redis
Redis安装流程请移步 https://www.cnblogs.com/IT-Crowd/articles/10626765.html
2. 下载Redis扩展
[[email protected] php-extension]# wget https://pecl.php.net/get/redis-4.3.0.tgz
3. 解压 tar -zxvf redis-4.3.0.tgz
[[email protected] php-extension]# tar -zxvf redis-4.3.0.tgz
4. 生成configure配置文件
[[email protected] php-extension]# cd redis-4.3.0
[[email protected] redis-4.3.0]# /usr/local/php/bin/phpize
5.安装redis扩展
[[email protected] redis-4.3.0]# ./configure --with-php-config=/usr/local/php/bin/php-config
[[email protected] redis-4.3.0]# make && make install
安装完成提示:
Build complete.
Don‘t forget to run ‘make test‘.
Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20170718/
6.在php.ini中添加Redis扩展
首先配置extension_dir:
extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20170718/"
在extension_dir下面添加 extension = redis.so
7.重启PHP
[[email protected] redis-4.3.0]# service php-fpm restart
8.Redis扩展安装成功
以上是关于php安装redis扩展的主要内容,如果未能解决你的问题,请参考以下文章