linux安装php-redis扩展(转)

Posted 啊饭

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux安装php-redis扩展(转)相关的知识,希望对你有一定的参考价值。

1、下载php-redis zip安装包

https://github.com/nicolasff/phpredis

或我上传的

http://download.csdn.net/detail/musicrabbit/5865115

2、找到PHP安装路径

命令whereis phpize和whereis php-config 找到phpize和php-config路径

3、生成configure

# /usr/bin/phpize

4、编译安装

# ./configure --with-php-config=/usr/bin/php-config

# make && make install

5、加入安装的redis.so模块

# vim /etc/php.ini

技术分享

6、重启apache或nginx

7、测试

[php] view plain copy
 
  1. <?php  
  2. $redis = new Redis();  
  3. $redis->connect(‘127.0.0.1‘,6379);  
  4. $redis->set(‘test‘,‘hello world!‘);  
  5. echo $redis->get(‘test‘);  
  6. ?>  

 

以上是关于linux安装php-redis扩展(转)的主要内容,如果未能解决你的问题,请参考以下文章

CentOS 7下安装php-redis扩展及简单使用

ubuntu下安装redis 和 php-redis扩展

Centos7安装php-redis扩展

Centos7下安装php-redis扩展及简单使用

Windows 安装PHP-redis扩展

安装php-redis扩展