Heim > Artikel > Backend-Entwicklung > So kompilieren und installieren Sie PHP5.6 PHP-FPM
So kompilieren und installieren Sie php5.6 php-fpm: 1. Installieren Sie das PHP-Abhängigkeitspaket und laden Sie die Version php5.6.36 herunter. 2. Geben Sie das Softwareinstallationsverzeichnis als „/usr/local/php“ an Konfiguration und Parsen von PHP Can.
Die Betriebsumgebung dieses Artikels: Ubuntu16.04-System, PHP5.6.36-Version, Dell G3-Computer.
php5.6 php-fpm nginx Installation und Konfiguration
Heute habe ich eine Website gefunden, die auf der PHP-Version basiert, und bin dann online gegangen, um Informationen zu sammeln und zu versuchen, sie zu installieren.
1. Installieren Sie zuerst das PHP-Abhängigkeitspaket.
yum -y install gcc gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel libidn libidn-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers gd gd2 gd-devel gd2-devel perl-CPAN pcre-devel
2. PHP5.6.36-Version herunterladen
http://php.net/get/php-5.6.36.tar.gz/from/a/mirror
php-fpm-Komponentenbeschreibung
Nginx in der LNMP-Umgebung unterstützt PHP nicht und das Fastcgi-Plugin ist erforderlich, um PHP-bezogene Anfragen zu verarbeiten. PHP benötigt die Komponente php-fpm, um diese Funktion bereitzustellen. In Versionen vor php5.3.3 existierte php-fpm in Form eines Patch-Pakets. Nach php5.3.3 müssen Sie das Modul während der Kompilierung und Installation nur noch mit --enable-fpm laden, ohne es separat zu installieren.
3. PHP installieren
Erstellen Sie zunächst das Verzeichnis, in dem PHP installiert werden muss Zeigen Sie den Inhalt des Softwareinstallationsverzeichnisses an der Dienst
cd /etc/ mkdir php cd /usr/local/ mkdir php tar -xzvf php-5.6.36.tar.gz cd php-5.6.36
4. Nginx-Parsing-PHP
1. Geben Sie das Nginx-Verzeichnis ein
/etc/php ./configure --prefix=/usr/local/php --with-config-file-path=/etc/php --enable-fpm --enable-pcntl --enable-mysqlnd --enable-opcache --enable-sockets --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-shmop --enable-zip --enable-ftp --enable-soap --enable-xml --enable-mbstring --disable-rpath --disable-debug --disable-fileinfo --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-pcre-regex --with-iconv --with-zlib --with-gd --with-openssl --with-mhash --with-xmlrpc --with-curl --with-imap-ssl Thank you for using PHP. config.status: creating php5.spec config.status: creating main/build-defs.h config.status: creating scripts/phpize config.status: creating scripts/man1/phpize.1 config.status: creating scripts/php-config config.status: creating scripts/man1/php-config.1 config.status: creating sapi/cli/php.1 config.status: creating sapi/fpm/php-fpm.conf config.status: creating sapi/fpm/init.d.php-fpm config.status: creating sapi/fpm/php-fpm.service config.status: creating sapi/fpm/php-fpm.8 config.status: creating sapi/fpm/status.html config.status: creating sapi/cgi/php-cgi.1 config.status: creating ext/phar/phar.1 config.status: creating ext/phar/phar.phar.1 config.status: creating main/php_config.h config.status: executing default commands [root@localhost php-5.6.36]# make [root@localhost php-5.6.36]# make install
[root@localhost php-5.6.30]# ls /usr/local/php bin etc include lib php sbin var
[root@localhost php-5.6.30]# cp php.ini-development /etc/php/php.ini
[root@localhost ~]# ln -s /usr/local/php/bin/php /usr/bin/php [root@localhost ~]# ln -s /usr/local/php/bin/phpize /usr/bin/phpize [root@localhost ~]# ln -s /usr/local/php/sbin/php-fpm /usr/bin/php-fpm
[root@localhost ~]# /usr/local/php/bin/php --version [root@localhost ~]# cd /usr/local/php/etc/ [root@localhost ~]# cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf [root@localhost ~]# ln -s /usr/local/php/etc/php-fpm.conf /etc/php/php-fpm.conf #添加软连接到 /etc/php目录 [root@localhost ~]# vim /usr/local/php/etc/php-fpm.conf pid = run/php-fpm.pid #取消前面的分号 [root@localhost ~]# cp 源码目录/php-5.6.36/sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm #拷贝php-fpm到启动目录 [root@localhost ~]# chmod +x /etc/rc.d/init.d/php-fpm #添加执行权限 [root@localhost ~]# chkconfig php-fpm on #设置开机启动
5. Verwandte Abfragen
1. Überprüfen Sie mit dem Befehl, wie viele PHP-CGI-Prozesse auf dem Server geöffnet sind
[root@localhost ~]# netstat -tunlp |grep 9000
3. In der Linux + Nginx + PHP-Umgebung beträgt das Speicherlimit jedes PHP-FPM-Prozesses
Bearbeiten Sie die Konfigurationsdatei php-fpm.conf
Empfohlenes Lernen: „
“
Das obige ist der detaillierte Inhalt vonSo kompilieren und installieren Sie PHP5.6 PHP-FPM. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!