So installieren Sie PHP auf Centos6.8: Überprüfen Sie zuerst das aktuell installierte PHP-Paket und konfigurieren Sie es dann neu. Führen Sie dann die Installation über „yum -y install php56w.x86_64“ durch PHP FPM Kann.
Ü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 das oben installierte Paket löschen möchten, installieren Sie es erneut
rpm -qa | grep webstatic rpm -e [上面搜索到的包即可]
Führen Sie die Installation durch
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 zur PHP5.5- oder 5.4-Version wechseln möchten, ändern Sie einfach die oben genannten 56 W in 55 W oder 54 W.
Empfohlen: "Centos-System-Tutorial"
Das obige ist der detaillierte Inhalt vonSo installieren Sie PHP auf Centos6.8. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!