So installieren Sie PHP mit yum in Centos6.8: 1. Konfigurieren Sie die Installationspaketquelle. 2. Führen Sie die Installation über „yum -y install php56w.x86_64 yum --enablerepo=webtatic...“ durch. PHP-FPM einrichten Einfach hochfahren und starten.
Die Betriebsumgebung dieses Artikels: Centos6.8-System, PHP5.6-Version, DELL G3-Computer
Centos6.8 Wie installiere ich PHP auf yum?
Centos6.8 installiert PHP5.6
Überprüfen Sie die aktuell installierten PHP-Pakete
yum list installed | grep php
Wenn PHP-Pakete installiert sind, löschen Sie diese zuerst, wie zum Beispiel:
yum remove php.x86_64 php-cli.x86_64 php-common.x86_64
Konfigurieren Sie die Quelle des Installationspakets:
# Centos 5.X rpm -Uvh http://mirror.webtatic.com/yum/el5/latest.rpm # CentOs 6.x rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm # CentOs 7.X rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
Wenn Sie die oben installierten Pakete löschen möchten, installieren Sie sie neu
rpm -qa | grep webstatic rpm -e [上面搜索到的包即可]
Führen Sie die Installation aus
yum -y install php56w.x86_64 yum -y --enablerepo=webtatic install php56w-devel yum -y install php56w-pdo php56w-xml php56w-gd php56w-gd.x86_64 php56w-ldap.x86_64 php56w-mbstring.x86_64 php56w-mcrypt.x86_64 php56w-mysql.x86_64 php56w-pdo.x86_64 php56w-opcache.x86_64
Installieren Sie PHP FPM
yum -y install php56w-fpm #设置php-fpm开机启动 chkconfig php-fpm on #启动php-fpm /etc/init.d/php-fpm start
Hinweis: Wenn Sie auf die PHP-Version 5.5 oder 5.4 wechseln möchten, ändern Sie einfach die oben genannten 56 W in 55 W oder 54 W.
Empfohlenes Lernen: „PHP-Video-Tutorial“
Das obige ist der detaillierte Inhalt vonSo installieren Sie PHP auf Centos6.8 Yum. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!