Maison  >  Article  >  développement back-end  >  Enregistrer les commandes d'installation de php7 sous Linux

Enregistrer les commandes d'installation de php7 sous Linux

coldplay.xixi
coldplay.xixiavant
2021-02-22 09:25:572667parcourir

Enregistrer les commandes d'installation de php7 sous Linux

Recommandé (gratuit) : PHP7

enregistrement de commande d'installation php7 sous Linux

<p style="line-height: 1.45em;">wget http://cn2.php.net/distributions/php-7.0.5.tar.gztar -zxvf php-7.0.5.tar.gz<br/><br/>cd php-7.0.5./configure \--prefix=/usr/local/php <br/>\  --with-curl  --with-freetype-dir  --with-gd  <br/>\--with-gettext  --with-iconv-dir  --with-kerberos  <br/>\--with-libdir=lib64  --with-libxml-dir  --with-mysqli <br/>\--with-openssl  --with-pcre-regex  --with-pdo-mysql  <br/>\--with-pdo-sqlite  --with-pear  --with-png-dir  <br/>\--with-xmlrpc  --with-xsl  --with-zlib  <br/>\--enable-fpm  --enable-bcmath  --enable-libxml  <br/>\--enable-inline-optimization  <br/>\--enable-gd-native-ttf  --enable-mbregex  <br/>\--enable-mbstring  --enable-opcache  <br/>\--enable-pcntl  --enable-shmop  <br/>\--enable-soap  --enable-sockets  <br/>\--enable-sysvsem  --enable-xml  <br/>\--enable-zip报错<br/> configure: error: Cannot find OpenSSL&#39;s <evp.h> <br/> yum install openssl openssl-devel<br/><br/>configure: error: Please reinstall the libcurl distribution -<br/>    easy.h should be in <curl-dir>/include/curl/<br/>yum install curl curl-devel<br/><br/>If configure fails try --with-webp-dir=<DIR><br/>If configure fails try --with-jpeg-dir=<DIR><br/>configure: error: png.h not found.<br/>yum install libpng libpng-devel<br/><br/>.....<br/>或者一次性把这些需要包全部安装<br/>yum -y install libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel<br/><br/>cp php.ini-development /etc/php7.ini<br/>cd /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf<br/>cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf<br/>cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf<br/><br/>ln -s /usr/local/php/bin/php /bin/php<br/>ln -s /usr/local/php/sbin/php-fpm /bin/php7-fpm<br/>ln -s /usr/local/php/bin/php /bin/php7<br/></p>

         

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer