Heim > Artikel > Backend-Entwicklung > Installieren Sie PHP 7 unter Centos 7
Der Inhalt dieses Artikels handelt von der Installation von PHP 7 unter Centos 7. Er hat einen gewissen Referenzwert. Jetzt können Freunde in Not darauf verweisen.
1 Installieren Sie Nginx
yum install nginx
2 Installierenepel源
yum install epel-release wget http://rpms.remirepo.net/enterprise/remi-release-7.rpm && rpm -Uvh remi-release-7.rpm
3 PHP installieren
yum --enablerepo=remi-safe -y install php71
4 Abhängigkeiten installieren
yum install php71-php-mcrypt php71-php-mcrypt php71-php-json php71-php-mbstring php71-php-xml php71-php-soap php71-php-xmlrpc php71-php-simplexml php71-php-curl php71-php-mysqlnd
5 PHP-fpm installieren
yum --enablerepo=remi-safe -y install php71-php-fpm
6 Start einrichten
systemctl start php71-php-fpm systemctl status php71-php-fpm.service systemctl enable php71-php-fpm
7 Konfigurationsdatei
/etc/opt/remi/php71/
/etc/opt/remi/php71/php-fpm.d/www.conf
Verwandte Empfehlungen:
Detaillierte Erklärung zur Installation von PHP7 unter Mac
Detaillierte Erklärung zur manuellen Installation von PHP5.6.33 in Centos7
Das obige ist der detaillierte Inhalt vonInstallieren Sie PHP 7 unter Centos 7. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!