Heim > Artikel > Backend-Entwicklung > So installieren Sie PHP5.5 mit yum
So installieren Sie php5.5 mit yum: Überprüfen Sie zuerst das aktuell installierte PHP-Paket und löschen Sie es. Führen Sie dann yum install aus und installieren Sie schließlich PHP FPM über „yum install php55w-fpm“.
Empfohlen: „PHP-Video-Tutorial“
Installieren Sie PHP5.5, 5.6, 7.0 mit Yum unter Centos
Die Standardversion ist zu niedrig, die manuelle Installation ist etwas mühsam, ich möchte Verwenden Sie die Yum-Installation. Sie können die folgende Lösung verwenden:
1. Überprüfen Sie die aktuell installierten PHP-Pakete
yum list installed | grep php
Wenn PHP-Pakete installiert sind, löschen Sie diese zuerst
yum remove php.x86_64 php-cli.x86_64 php-common.x86_64 php-gd.x86_64 php-ldap.x86_64 php-mbstring.x86_64 php-mcrypt.x86_64 php-mysql.x86_64 php-pdo.x86_64
2. Wenn Sie löschen möchten Versuchen Sie es mit den oben installierten Paketen erneut. Installieren Sie
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
3. Führen Sie yum install
rpm -qa | grep webstatic rpm -e 上面搜索到的包即可
aus.
Hinweis: Wenn Sie auf 5.6 aktualisieren möchten, ersetzen Sie einfach die oben genannten 55 W durch 56 W.
yum install php55w.x86_64 php55w-cli.x86_64 php55w-common.x86_64 php55w-gd.x86_64 php55w-ldap.x86_64 php55w-mbstring.x86_64 php55w-mcrypt.x86_64 php55w-mysql.x86_64 php55w-pdo.x86_64 yum install php56w.x86_64 php56w-cli.x86_64 php56w-common.x86_64 php56w-gd.x86_64 php56w-ldap.x86_64 php56w-mbstring.x86_64 php56w-mcrypt.x86_64 php56w-mysql.x86_64 php56w-pdo.x86_64
4. Installieren Sie PHP FPM
yum install php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-mysql.x86_64 php70w-pdo.x86_64
Hinweis: Wenn Sie auf 5.6 aktualisieren möchten, ersetzen Sie einfach die oben genannten 55 W durch 56 W.
Das obige ist der detaillierte Inhalt vonSo installieren Sie PHP5.5 mit yum. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!