linux yum安装php7.3

Posted

tags:

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

参考技术A 先安装前面的教程,再安装后面的

参考教程1:
https://blog.csdn.net/weixin_43731793/article/details/91488289

参考教程2:
http://www.bubuko.com/infodetail-2931909.html

安装php
1、安装PHP73
1.1、卸载旧版本PHP
yum remove php*
1.2、安装EPEL:

sudo yum install epel-release
1.3、安装remi(选一个):

sudo rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
1.4、查看目前有php的什么版本(可忽略)
sudo yum list php*
1.5、列出所有的php相关的rpm包(可忽略)

rpm -qa|grep php
1.6、删除php相关的rpm包(一次只能删除一个)(可忽略)

rpm -e php72w-mysqlnd-7.2.17-1.w7.x86_64
1.7、列出remi仓库下所有PHP7.3可用模块。(可忽略)
yum --enablerepo=remi-php73 search php | grep php73
1.8、安装PHP 7.3
yum --enablerepo=remi-php73 install php

1、安装 PHP7.3:
(解决yum安装apache关联不了PHP的问题,用以下命令安装)

yum --enablerepo=remi-php73 install php

安装模块
yum --enablerepo=remi-php73 install php73-php-fpm php73-php-cli php73-php-bcmath php73-php-gd php73-php-json php73-php-mbstring php73-php-mcrypt php73-php-mysqlnd php73-php-opcache php73-php-pdo php73-php-pecl-crypto php73-php-pecl-mcrypt php73-php-pecl-geoip php73-php-recode php73-php-snmp php73-php-soap php73-php-xml

2、设置开机启动、运行服务:
systemctl enable php73-php-fpm
systemctl start php73-php-fpm

3、查找php.ini位置:
find /etc/opt/remi/php73 -name php.ini

/etc/opt/remi/php73/php.ini

找到apache的配置文件:httpd.conf
sudo find / -name httpd.conf

位置如下:

/etc/httpd/conf/httpd.conf

5、PHP日常操作
systemctl restart php73-php-fpm #重启
systemctl start php73-php-fpm #启动
systemctl stop php73-php-fpm #关闭
systemctl status php73-php-fpm #检查状态
php -m #查看PHP已安装拓展模块
php -v #查看PHP版本

夯实PHP基础系列linux下yum安装PHP APC

Alternative PHP Cache(可选PHP缓存),依赖于 PECL扩展库

 

 

用源码方式安装,直接yum就行了:
首先要安装apc的依赖包:
yum install php-pear php-devel httpd-devel pcre-devel gcc make


然后使用pecl安装apc:
pecl install apc


添加apc扩展到配置文件:
echo "extension=apc.so" > /etc/php.d/apc.ini


最后记得重启服务器:
service httpd restart ,然后用PHP的phpinfo()函数可以检测到:

 

参考文档:

  1)linux下yum安装PHP APC

  2)使用Yum快速安装nginx+php-fpm+apc










以上是关于linux yum安装php7.3的主要内容,如果未能解决你的问题,请参考以下文章

centos/RHEL 7.6 使用yum安装php7.3(方便wordpress的php7.3需求,并解决了libphp7.so缺失问题)

CentOS7编译安装httpd-2.4.41 php7.3

centos7源码安装PHP7.3

Docker 编译安装php7.3

centos7系统源码编译安装PHP7.3.5版本

linux 安装多个PHP版本(php5.6 php7.1 php7.2 php7.3 php7.4 php8.0)nginx配置php多版本