centos 编译安装php8 php7升级php8

php7用yum安装的最好是删掉比较好,自己编译安装的可以不用删,但还是最好备份一下之前版本配置,还有版本切换的时候记得,扩展要同时更新。
author:lxfamn date:20211118 descrip:php安装完成后一定要记得启动,否则访问会显示下载
在centos7下编译安装php8

更新系统软件

yum update
  1. 下载php8编译包
  2. 安装依赖包
  3. 编译配置
  4. 安装
  5. 修改环境变量
  6. 修改php-fpm
  7. 启动php-fpm
wget -O php8.tar.gz https://www.php.net/distributions/php-8.0.12.tar.gz
tar -xvf php8.tar.gz
cd php-8.0.12

./configure --prefix=/usr/local/php8 --with-apxs2=/usr/local/apache2/bin/apxs --with-config-file-path=/usr/local/php8/etc/  --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-soap --with-libxml-dir --with-xmlrpc --with-openssl --with-mcrypt --with-mhash --with-pcre-regex --with-sqlite3 --with-zlib --enable-bcmath --with-iconv --with-bz2 --enable-calendar --with-curl --with-cdb --enable-dom --enable-exif --enable-fileinfo --enable-filter --with-pcre-dir --enable-ftp --with-gd --with-openssl-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-freetype-dir --enable-gd-native-ttf --enable-gd-jis-conv --with-gettext --with-gmp --with-mhash --enable-json --enable-mbstring --enable-mbregex --enable-mbregex-backtrack --with-libmbfl --with-onig --enable-pdo --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-zlib-dir --with-pdo-sqlite --with-readline --enable-session --enable-shmop --enable-simplexml --enable-sockets --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-wddx --with-libxml-dir --with-xsl --enable-zip --enable-mysqlnd-compression-support --with-pear --enable-opcache 
make
make install

vi /etc/profile
/在文件末尾增加下面两行/
PATH=$PATH:/usr/local/php/bin
export PATH
/生效环境变量/
source /etc/profile
建立软连接,可以直接使用PHP命令
1、删除之前系统默认的

rm -f /usr/bin/php

2、创建的软连接

ln -sf /www/php/72/bin/php /usr/bin/php

过程中问题
GNU MP Library version 4.2 or greater required.

yum -y install gmp-devel

Please reinstall readline - I cannot find readline.h

yum -y install readline-devel

转载请注明出处:

转载自http://lxfamn.cn/blog

未经允许不得转载:lxfamn » centos 编译安装php8 php7升级php8

赞 (1) 打赏

置顶推荐

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏