AI编程助手
AI免费问答

记录Linux下php7安装命令

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

推荐(免费):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'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>
</dir>
</dir></curl-dir></evp.h></p>

               

php免费学习视频:立即学习
踏上前端学习之旅,开启通往精通之路!从前端基础到项目实战,循序渐进,一步一个脚印,迈向巅峰!

声明:本文转载于:CSDN,如有侵犯,请联系admin@php.cn删除