在线下载(如果网速很慢,则离线下载上传到做事器):wget https://www.php.net/distributions/php-8.0.0.tar.gz
离线下载后可通过rz命令上传到做事器:rz -be 文件名
2、解压压缩包
实行代码:tar -xvf php-8.0.0.tar.gz
3、指定配置信息
解释:在实行编译之前,须要配置这次编译和安装后的文件的存放位置以及安装的一些组件,「在安装前务必要清楚,如果不理解,建议直策应用本文的代码,防止涌现非常问题。」
理解观点:
1、源码安装须要经历步骤:配置(configure)、编译(make)、安装( make install )。
2、Configure则是一个可实行文件,可以配置很多选项(可以理解为我们在Windows安装时的图像化界面的功能),可以通过./configure --help来查看选项详细含义。
个中--prefix选项浸染是配置源码安装的路径,--with-config-file-path选项浸染是设置php配置文件(php.ini)的存放位置,一样平常来说安装的时候只须要指定这两个路径即可,其他的则是指定php支持哪一些组件了。
3、延伸解释下指定存放路径的好处,实在可以类比在Windows等图形化系统的安装软件步骤,安装时指定软件的位置,方便后续对软件进行统一管理(删除,查找等)。
4、把稳:下面的代码必须处于同一行上,建议先复制到文本上查看是否在同一行,然后再复制到做事器中实行(否则会涌现很多莫名其妙的问题,相信你也不想花上几天韶光去处理)。
至于其他参数选项的含义,可以打官方或者利用./configure --help来查看选项详细含义,建议添加自己须要的组件即可,如果不清楚,进入到解压的文件后直接实行下面的代码。
./configure --prefix=/usr/local/install/php8 --with-config-file-path=/usr/local/install/php8/etc --with-curl --with-freetype --enable-gd --with-jpeg --with-gettext --with-kerberos --with-libdir=lib64 --with-libxml --with-mysqli --with-openssl --with-pdo-mysql --with-pdo-sqlite --with-pear --enable-sockets --with-mhash --with-ldap-sasl --with-xsl --with-zlib --with-zip -with-bz2 --with-iconv --enable-fpm --enable-pdo --enable-bcmath --enable-mbregex --enable-mbstring --enable-opcache --enable-pcntl --enable-shmop --enable-soap --enable-sockets --enable-sysvsem --enable-xml --enable-sysvsem --enable-cli --enable-opcache --enable-intl --enable-calendar --enable-static --enable-mysqlnd
5、配置成功后会涌现下面提示:
4、编译中可能涌现的非常和解决方案
解释,新做事器在实行configure脚本设置配置之前,须要存在的干系依赖脚本整合,下面会对每一个非常问题做详细解释:
yum install dnfdnf install libxml2-develdnf install sqlite-develdnf -y install bzip2-develdnf -y install libcurl-develdnf -y install libpng-develdnf -y install libjpeg-develdnf -y install freetype-develdnf -y install libicu-develyum install oniguruma-devel -ydnf -y install libxslt-develdnf -y install libzip-devel
1、非常信息:
configure: error: Package requirements (libxml-2.0 >= 2.9.0) were not met:No package 'libxml-2.0' found
办理方案:dnf install libxml2-devel
2、非常信息:
-bash: dnf: command not found
办理方案:yum install dnf
3、非常信息:
configure: error: Package requirements (sqlite3 > 3.7.4) were not met:No package 'sqlite3' found
办理方案:dnf install sqlite-devel
4、非常信息:
checking for BZip2 in default path... not foundconfigure: error: Please reinstall the BZip2 distribution
办理方案:dnf -y install bzip2-devel
5、非常信息:
configure: error: Package requirements (libcurl >= 7.29.0) were not met:No package 'libcurl' found
办理方案:dnf -y install libcurl-devel
6、非常信息:
configure: error: Package requirements (libpng) were not met:No package 'libpng' found
办理方案:dnf -y install libpng-devel
7、非常信息:
configure: error: Package requirements (libjpeg) were not met:Package 'libjpeg', required by 'virtual:world', not found
办理方案:dnf -y install libjpeg-devel
8、非常信息:
configure: error: Package requirements (freetype2) were not met:Package 'freetype2', required by 'virtual:world', not found
办理方案:dnf -y install freetype-devel
9、非常信息:
configure: error: Package requirements (icu-uc >= 50.1 icu-io icu-i18n) were not met:Package 'icu-uc', required by 'virtual:world', not foundPackage 'icu-io', required by 'virtual:world', not foundPackage 'icu-i18n', required by 'virtual:world', not found
办理方案:dnf -y install libicu-devel
10、非常信息:
configure: error: Package requirements (oniguruma) were not met:No package 'oniguruma' found
办理方案:yum install oniguruma-devel -y
11、非常信息:
configure: error: Package requirements (libxslt >= 1.1.0) were not met:No package 'libxslt' found
办理方案:dnf -y install libxslt-devel
12、非常信息:
configure: error: Package requirements (libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0) were not met:Package 'libzip', required by 'virtual:world', not found
办理方案:dnf -y install libzip-devel
13、非常信息:
configure: error: Package requirements (libzip >= 0.11 libzip != 1.3.1 libzip != 1.7.0) were not met:Requested 'libzip >= 0.11' but version of libzip is 0.10.1
办理方案:
1、先删除原来的安装:yum remove libzip-devel libzip
2、在线下载对应的版本:wget https://libzip.org/download/libzip-1.3.2.tar.gz --no-check-certificate
4、进入解压后的文件夹,实行配置脚本:./confugure
5、编译并安装:make & make install
6、安装完成后,查询/usr/local/lib目录下是否有pkgconfig目录,有的话实行命令export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig/"指定PKG_CONFIG_PATH,然后重新实行切换php解压之后的文件夹,实行./configure脚本即可
5、编译和安装配置完成后,实行make指令对源代码进行编译,实行make install指令对源代码进行安装,也可以同时实行这两个指令,详细如下(把稳:编译和安装都是在解压后的php文件夹下实行-即存在configure脚本的目录):
1、编译:make
2、安装:make install
3、涌现非常:cc: internal compiler error: Killed (program cc1)
缘故原由:大概率是由于内存不足利用,可以先利用交流分区来办理,编译安装后再删除掉即可。
办理:
sudo dd if=/dev/zero of=/swapfile bs=64M count=16sudo mkswap /swapfilesudo swapon /swapfile
取消交流分区:
sudo swapoff /swapfilesudo rm /swapfile
6、查看php安装情形
切换到configure指定的安装路径的bin目录,实行版本查看:
/usr/local/install/php8/bin/php --version
实行结果:
二、管理各种配置文件
1、天生php.ini配置文件(在php源码压缩包目录下):
cp php.ini-production /usr/local/install/php8/etc/php.ini
2、天生www配置文件:
cd /usr/local/install/php8/etc/php-fpm.d/cp www.conf.default www.conf
3、天生php-fpm配置文件:
cd /usr/local/install/php8/etc/cp php-fpm.conf.default php-fpm.conf
4、天生php-fpm可实行文件:
-- 创建存放配置文件的目录mkdir /usr/local/install/php8/fpm-- 从源码中复制一份fpm可实行脚本cp /usr/local/php/php-8.0.0/sapi/fpm/init.d.php-fpm /usr/local/install/php8/fpm/php-fpm-- 将php-fpm修正为可实行文件chmod 740 /usr/local/install/php8/fpm/php-fpm
三、管理php
解释:本文推举利用php-fpm进行管理php程序,php-fpm(FastCGI Process Manager:FastCGI进程管理器)是一个PHPFastCGI管理器,旨在将FastCGI进程管理整合进PHP包中(来源:百度百科)。
优点:相对Spawn-FCGI,php-fpm在CPU和内存方面的掌握都更胜一筹,而且前者很随意马虎崩溃,必须用crontab进行监控,而php-fpm则没有这种烦恼。
1、启动php-fpm:
/usr/local/install/php8/fpm/php-fpm start
2、查看php-fpm进程是否启动成功
ps aux | grep php | grep -v grep
3、查看pfp-fpm占用的端口
ss -lntp | grep php
4、实行php --version涌现php command not found非常,办理步骤
// 1、修正配置文件vim /etc/profile //2、添加php环境变量(即configure脚本时指定的安装路径下的bin目录)PATH=$PATH:/usr/local/install/php8/binexport PATH // 刷新配置文件source /etc/profile
5、大功告成
写在末了
「如果以为文章有帮助,请给博主点赞、收藏、关注。」 后续博主会带来更多优质、有质量的文章。
想要学习更多知识,理解更多开源项目,请关注博主,进入技能圈子(「圈子所有资源全免费,但哀求加入的小伙伴要有长久兴趣,如果只是一时冲动就不推举加入,毕竟名额有限」)。
加入技能圈子,除了碰着搭建问题免费辅导,还能第一韶光收到行业最新咨询和认识各专业大佬!