How to install php7 under Linux

coldplay.xixi
Release: 2023-02-17 17:12:02
Original
4713 people have browsed it

How to install php7 under Linux: first install the dependency package, and download and decompress the installation package; then check the dependencies of the environment, compile and install; then rename [php.ini-production] to [php.ini ]; Finally, copy the startup script and start PHP.

How to install php7 under Linux

How to install php7 under Linux:

1. Install dependency packages

yum install -y gcc gcc-c++ make zlib zlib-devel pcre pcre-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers
Copy after login

2. Download the installation package

cd /usr/local2 wget https://www.php.net/distributions/php-7.1.31.tar.gz
Copy after login

3. Unzip

tar -zxvf php-7.1.31.tar.gz
Copy after login

4. Check whether the current environment is satisfied Dependencies to install software

cd php-7.1.31
Copy after login
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php --enable-mbstring --enable-ftp --with-gd --with-jpeg-dir=/usr --with-png-dir=/usr --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --without-pear --disable-phar --enable-sockets --with-freetype-dir=/usr --with-zlib --with-libxml-dir=/usr --with-xmlrpc --enable-zip --enable-fpm --enable-xml --enable-sockets --with-gd --with-zlib --with-iconv --enable-zip --with-freetype-dir=/usr/lib/ --enable-soap --enable-pcntl --enable-cli --with-curl
Copy after login

5. Compile and install

make make install
Copy after login

6. Find php.ini in the previously compiled source code package -production, copy to /usr/local/php, and rename it to php.ini:

cp php.ini-production /usr/local/php/php.ini
Copy after login

[Optional] Set the PHP error message to be printed on the page

vi /usr/local/php/php.ini
Copy after login

Change Off to On

7. Copy the startup script

$ cp ./sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm $ chmod +x /etc/init.d/php-fpm
Copy after login

Modify the php-fpm configuration file:

$ cd /usr/local/php/etc $ cp php-fpm.conf.default php-fpm.conf $ vi php-fpm.conf
Copy after login

Removepid = run /php-fpm.pidThe preceding semicolon

$ cd php-fpm.d $ cp www.conf.default www.conf $ vi www.conf
Copy after login

Modify the users of user and group to the current user (you can also leave it unchanged, the user and user group nobody will be added by default)

8. Start PHP

$ /etc/init.d/php-fpm start #php-fpm启动命令 $ /etc/init.d/php-fpm stop #php-fpm停止命令 $ /etc/init.d/php-fpm restart #php-fpm重启命令 $ ps -ef | grep php 或者 ps -A | grep -i php #查看是否已经成功启动PHP
Copy after login

9. Start automatically at boot

vi /etc/rc.local
Copy after login

Add /etc/init.d/php-fpm start chmod x /etc/rc.d/rc.local

Related learning recommendations:PHP7 tutorial

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

Related labels:
source:php.cn
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
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!