Home>Article>Backend Development> Introduction to Linux installation of php7.3

Introduction to Linux installation of php7.3

coldplay.xixi
coldplay.xixi forward
2021-01-21 09:44:51 1798browse

Introduction to Linux installation of php7.3

Recommended (free):PHP7

Please install the dependency package first

$ 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

Download php-7.3.0

wget http://cn2.php.net/get/php-7.3.0.tar.gz/from/this/mirror -o php-7.3.0

Unzip

$ tar -zxvf php-7.3.0.tar.gz $ cd php-7.3.0

Configuration

./configure \ --prefix=/usr/local/php \ --exec-prefix=/usr/local/php \ --bindir=/usr/local/php/bin \ --sbindir=/usr/local/php/sbin \ --includedir=/usr/local/php/include \ --libdir=/usr/local/php/lib/php \ --mandir=/usr/local/php/php/man \ --with-config-file-path=/usr/local/php/etc \ --with-openssl \ --enable-mbstring \ --enable-fpm

Compile and install

$ make && make install

The source code compiled before package, find php.ini-production, copy it to /usr/local/php/etc, and rename it to php.ini:

$ cp php.ini-production /usr/local/php/etc/php.ini

Compile the php source code tosapi/fpm/ in the directory init.d.php-fpmCopy the file to the system configuration/etc/init.ddirectory and rename it tophp-fpm

[root@localhost php-7.3.0]# cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm [root@localhost php-7.3.0]# chmod +x /etc/init.d/php-fpm

Add php- fpm configuration file
Copy the/usr/local/php/etc/php-fpm.conf.defaultfile in the php installation directory to the same directory and rename it tophp-fpm.conf

[root@localhost php-7.3.0]# cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf

Add www.conf configuration file
Change the php installation directory/usr/local/php/etc/php-fpm.d/www.conf.defaultCopy the file to the same directory and rename it towww.conf

[root@localhost php-7.3.0]# cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf

Add the php installation directory to the system environment variable
Create and open the file php.sh

[root@localhost php-7.3.0]# vim /etc/profile.d/php.sh

Add the following content:

export PATH=$PATH:/usr/local/php/bin/:/usr/local/php/sbin/

Save and exit

:wq!

Use source to take effect immediately The php environment variable just added

[root@localhost php-7.3.0]# source /etc/profile.d/php.sh

Start php-fpm

[root@localhost php-7.3.0]# service php-fpm start

Success comes when you see port 9000! ! !

Set php to start at boot

修改系统配置目录下的 php-fpm 文件可执行权限 [root@localhost php-src-php-7.1.6]# chmod +x /etc/init.d/php-fpm > 将系统配置目录下的 `php-fpm` 添加到 `系统服务` [root@localhost php-src-php-7.1.6]# chkconfig --add php-fpm > 设置 `php-fpm` `系统服务` 为开机启动 [root@localhost php-src-php-7.1.6]# chkconfig php-fpm on

Check the port after restarting to see if it exists!

success! ! !

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

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete