Fedora下安装php Redis扩展笔记

网络编程 2021-07-05 09:50www.168986.cn编程入门
这篇文章主要介绍了Fedora下安装php Redis扩展笔记,本文使用编译安装方式安装php Redis扩展,需要的朋友可以参考下

一、安装编译工具

代码如下:

yum install wget make g g-c++ zlib-devel openssl openssl-devel pcre-devel kernel keyutils patch perl

二、安装redis php-redis
代码如下:

# yum install redis php-redis

这样就安装成功了

启动redis

代码如下:

# sudo redis-server /etc/redis.conf

1、下载php-redis zip安装包

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、测试

代码如下:

$redis = new Redis();
$redis->connect('127.0.0.1',6379);
$redis->set('test','hello world!');
echo $redis->get('test');

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by