首页  >  文章  >  后端开发  >  记录Linux下php7安装命令

记录Linux下php7安装命令

coldplay.xixi
coldplay.xixi转载
2021-02-22 09:25:572613浏览

记录Linux下php7安装命令

推荐(免费):PHP7

Linux下php7安装命令记录

<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>

               

以上是记录Linux下php7安装命令的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:csdn.net。如有侵权,请联系admin@php.cn删除