“心有所向,日复一日,必有精进”前言:想必大家看完我之前写的搭建redis服务器,大家都已经把redis搭建起来了吧如果没有搭建起来的小可爱请移步这里哦从0到1搭建redis6是不是还没看够呢,现在它来了,搭建完redis服务器,我们肯定要去用的,下面我们会一步步讲解redis cluster向PHP客户端扩展 。
七、redis cluster 向客户端扩展1.安装PHP7版本及php-fpm,php-redis,hiredis,swoole扩展
更新yum源
[root@mysql_master ~]# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm[root@mysql_master ~]# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm[root@mysql_master /]# yum search php71w
- 注:没有错误的话这里可以跳过
- 安装到这里的时候,发现了我的centos7在装完上面的两个yum源后,进行下一步查看有没有PHP71w扩展的时候,yum search php71w竟然弹出来错误,而且我的yum安装程序也不能使用(不能使用yum install **)
- 搜了很多参考资料,但对这个错误解释的很少,以下是我的解决过程
文章插图
- 看错误提示,应该是证书有问题,但这时候我们使用不了yum安装任何东西,所以我们首先删除刚才安装的所有rpm软件包,命令如下:
# yum -y remove epel-release-7-14.noarch
- 安装证书:
#yum install ca-certificates -y
- 更新证书:
# update-ca-trust extract
- 重新更新yum源
[root@mysql_master /]# rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm[root@mysql_master /]# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm查看PHP信息:[root@mysql_master /]# yum search php71w#出现以下内容则证明没有问题mod_php71w.x86_64 : PHP module for the Apache HTTP Serverphp71w-bcmath.x86_64 : A module for PHP applications for using the bcmath libraryphp71w-cli.x86_64 : Command-line interface for PHPphp71w-common.x86_64 : Common files for PHPphp71w-dba.x86_64 : A database abstraction layer module for PHP applicationsphp71w-devel.x86_64 : Files needed for building PHP extensions...................内容很多,不再赘述~
[root@mysql_master /]# yum -y install php71w php71w-fpm php71w-cli php71w-common php71w-devel php71w-gd php71w-pdo php71w-mysql php71w-mbstring php71w-bcmath
3.检查PHP版本[root@mysql_master /]# php -vPHP 7.1.33 (cli) (built: Oct 26 2019 10:16:23) ( NTS )Copyright (c) 1997-2018 The PHP GroupZend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies
4.安装swoole扩展[root@mysql_master ~]# wget -O Swoole-4.4.5.tar.gz https://github.com/swoole/swoole-src/archive/v4.4.5.tar.gz[root@mysql_master ~]# tar -zxvf Swoole-4.4.5.tar.gz[root@mysql_master ~]# cd swoole-src-4.4.5[root@mysql_master swoole-src-4.4.5]# phpize//(ubuntu没有安装phpize可执行命令: sudo apt-get install php-dev来安装phpize)[root@mysql_master swoole-src-4.4.5]# ./configure// 配置[root@mysql_master swoole-src-4.4.5]# make//编译[root@mysql_master swoole-src-4.4.5]# make install//安装
5.安装PHP-redis扩展[root@mysql_master ~]# yum -y install redis php-redis
6.安装异步hiredis[root@mysql_master ~]# yum -y install hiredis-devel
7.配置php.ini编译安装成功后,修改php.ini加入[root@mysql_master ~]# vim /etc/php.iniextension=redis.soextension=swoole.so#通过php -m或phpinfo()来查看是否成功加载了swoole.so,如果没有可能是php.ini的路径不对,可以使用php --ini来定位到php.ini的绝对路径[root@mysql_master ~]# php -m //检查框架模块加载成功没有
8.安装php-fpm扩展1、安装php71w-fpm 上面已经用yum安装过了就不必再次安装2、创建web用户组及用户
经验总结扩展阅读
- 速食主义者是什么梗
- ARB币前景怎么样
- 为什么蚯蚓钓不到大鱼
- 春节祝福女士的祝福语161句
- OPPO手机怎么才能设置到自己心仪的彩铃
- 自费社保到底该不该交费 自费社保划算吗
- 农历五月有什么忌讳
- 阴历五月有什么佛的节日
- 阴历5月有什么菩萨生日
- 上海社保落户基数标准2023年 社保达到多少才能落户上海