centos PHP7.0 安装及卸载

yum 安装php7

# 安装epel-release

yum -y install epel-release


# 安装PHP7的rpm源

rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

# 安装PHP7

yum install php70w

#安装 php-fpm
yum install php70w-fpm php70w-opcache

# 安装mysql扩展
yum install php70w-mysql
yum install php70w-gd
yum install php70w-mbstring
yum install php70w-xml
# 启动php-fpm
systemctl start php-fpm.service 

yum 卸载php

查看全部php 安装包

rpm -qa|grep php

[root@VM_0_4_centos php-fpm.d]# rpm -qa|grep php
php70w-fpm-7.0.33-1.w7.x86_64
php70w-common-7.0.33-1.w7.x86_64
php70w-opcache-7.0.33-1.w7.x86_64
php70w-cli-7.0.33-1.w7.x86_64
php70w-7.0.33-1.w7.x86_64

# rpm -e php70w-fpm-7.0.33-1.w7.x86_64
# rpm -e php70w-common-7.0.33-1.w7.x86_64
# rpm -e php70w-opcache-7.0.33-1.w7.x86_64
# rpm -e php70w-cli-7.0.33-1.w7.x86_64
# rpm -e php70w-7.0.33-1.w7.x86_64

yum remove php
php -v
posted @ 2023-09-13 17:15  snakelis  阅读(336)  评论(0)    收藏  举报