Fork me on GitHub

linux 卸载重装 php

卸载 php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 查看已安装的 php 相关包
rpm -qa|grep php
php-pecl-igbinary-1.2.1-1.el7.x86_64
php-xml-5.4.16-43.el7_4.x86_64
php-pecl-redis-2.2.8-1.el7.x86_64
php-common-5.4.16-43.el7_4.x86_64
php-process-5.4.16-43.el7_4.x86_64
php-cli-5.4.16-43.el7_4.x86_64
php-fpm-5.4.16-43.el7_4.x86_64
php-pear-1.9.4-21.el7.noarch

# 依次卸载
rpm -e xxx

如果某个包被依赖不能卸载,如:
➜ src rpm -e php-cli-5.4.16-43.el7_4.x86_64
错误:依赖检测失败:
php-cli 被 (已安裝) php-pear-1:1.9.4-21.el7.noarch 需要
先卸载 php-pear-1.9.4-21.el7.noarch

如果还有不能卸载的,可以加 参数强制卸载,如:
rpm -e php-4.3.9-3.15 --nodeps

安装 php7

1
2
3
4
rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

yum install php70w
-------------感谢您的阅读 有问题请留言(或mailto:frostbelt@sina.cn)-------------