Heim > Artikel > Betrieb und Instandhaltung > So installieren Sie PHP-FPM auf Centos7
So installieren Sie „php-fpm“ auf centos7: Installieren Sie zuerst „php-fpm“-bezogene Komponenten über yum; ändern Sie dann den Inhalt in „default.conf“, um schließlich den Nginx-Dienst neu zu starten.
Empfohlen: „Centos-Einführungs-Tutorial“
CentOS7 verwendet yum, um Nginx+php-fpm zu installieren
Umgebung
[root@localhost html]# cat /etc/centos-release CentOS Linux release 7.1.1503 (Core) [root@localhost sbin]# /usr/sbin/nginx -v nginx version: nginx/1.14.0 [root@localhost /]# php-fpm -v PHP 5.4.16 (fpm-fcgi) (built: Apr 12 2018 19:03:25) Copyright (c) 1997-2013 The PHP Group Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
1. Installieren Sie nginx
rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm yum install -y nginx systemctl start nginx systemctl status nginx systemctl stop nginx systemctl enable nginx
Öffnen Sie die folgende Adresse mit einem Browser Zugriff bedeutet, dass die Konfiguration erfolgreich ist
http://192.168.0.61/
2.yum PHP-FPM-bezogene Komponenten installieren
yum -y install php php-fpm php-gd php-mysql php-common php-pear php-mbstring php-mcrypt systemctl status php-fpm systemctl start php-fpm systemctl enable php-fpm
3. Bearbeiten Sie /etc/nginx/conf.d/default.conf und fügen Sie den folgenden Inhalt hinzu PHP unterstützen
vim /etc/nginx/conf.d/default.conf
# location ~ \.php$ { root /usr/share/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
Nachdem Sie die Konfiguration geändert haben, müssen Sie den Nginx-Dienst neu starten
4 index.php-Datei und testen Sie sie
vim /usr/share/nginx/html/index.php
<?php phpinfo(); ?>
Öffnen: http://192.168.0.61
Das obige ist der detaillierte Inhalt vonSo installieren Sie PHP-FPM auf Centos7. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!