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 to sapi/fpm/ in the directory init.d.php-fpm
Copy the file to the system configuration /etc/init.d
directory and rename it to php-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.default
file in the php installation directory to the same directory and rename it to php-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.default
Copy the file to the same directory and rename it to www.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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

WebStorm Mac version
Useful JavaScript development tools
