Home > Backend Development > PHP7 > body text

Record php7 installation commands under Linux

coldplay.xixi
Release: 2023-02-17 19:58:01
forward
2607 people have browsed it

Record php7 installation commands under Linux

Recommended (free): PHP7

##php7 installation command record under 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>
Copy after login

         

The above is the detailed content of Record php7 installation commands under Linux. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!