Blogger Information
Blog 91
fans 0
comment 0
visits 203645
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Linux 安装 PHP 扩展(Redis、Solr等扩展通用)
何澤小生的博客
Original
1525 people have browsed it

环境介绍:Linux (centos7)、PHP 7.4.3、Nginx 1.19.4

PHP 扩展插件可以从这里查找哈:https://pecl.php.net


安装Redis扩展

Linux 下载地址:https://pecl.php.net/package/redis

window 下载地址:https://pecl.php.net/package/redis/5.3.1/windows

选择自己适合的扩展,我选择了Redis5.3.1【windows 可选下载包后面的 DLL,下载扩展插件】

# 切换下载目录
cd /usr/local/src

# 下载安装包
wget https://pecl.php.net/get/redis-5.3.1.tgz 

# 解压安装包
tar zxvf redis-5.3.1.tgz 

# 切换安装包目录
cd redis-5.3.1 

# 查找 phpize 脚本文件位置
find / -name phpize

# 执行脚本
/usr/local/php7/bin/phpize

# 查找 php-config 配置文件位置
find / -name php-config

# 配置安装目录
./configure --with-php-config=/usr/local/php7/bin/php-config 

# 编译
make 

# 编译安装
make install


安装完成之后,记得添加扩展到 php.ini 中 并重启 php-fpm

vim /usr/local/php7/etc/php.ini

最后一行添加:extension=redis.so,然后 wq 保存退出

重启php进程

service php-fpm7 restart
或
/etc/init.d/php-fpm7 restart

查看php是否已经安装了redis模块:

[root@iZ ~]# php -m | grep redis
redis

或

编辑文件 echo phpinfo(); 函数


转载请注明出处~~~~, 预祝大家顺利安装 (^ _ ^)(^ _ ^)(^ _ ^)(^ _ ^)(^ _ ^)(^ _ ^)


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post