0


PHP8.3安装(编译)

1、下载php安装包

  1. # php下载地址
  2. https://www.php.net/downloads.php

2、安装php

  1. # 1、创建php用户wwwwuseradd-M-s /sbin/nologin www
  2. # 2、安装依赖包
  3. yum install-y gcc libxml2-devel openssl-devel curl-devel libjpeg-devel libpng-devel libXpm-devel freetype-devel libmcrypt-devel make autoconf ImageMagick-devel libssh2-devel gcc-c++ cyrus-sasl-devel sqlite-devel oniguruma-devel openldap-devel sqlite-devel libcurl-devel
  4. # 3、上传php包,并解压tar-xf php-8.3.10.tar.gz
  5. # 4、安装phpcd php-8.3.10
  6. ## 配置编译参数CPPFLAGS="-I/usr/include"\LDFLAGS="-L/usr/lib64 -L/usr/lib64 -lldap -llber"\
  7. ./configure \--prefix=/usr/local/php \
  8. --with-config-file-path=/usr/local/php/etc \
  9. --with-config-file-scan-dir=/usr/local/php/etc/php.d \
  10. --disable-ipv6 \
  11. --enable-bcmath \
  12. --enable-calendar \
  13. --enable-exif \
  14. --enable-fpm \
  15. --with-fpm-user=www \
  16. --with-fpm-group=www \
  17. --enable-ftp \
  18. --enable-gd \
  19. --with-external-gd \
  20. --with-jpeg \
  21. --with-freetype \
  22. --with-xpm \
  23. --with-webp \
  24. --enable-mbregex \
  25. --enable-mbstring \
  26. --enable-mysqlnd \
  27. --enable-opcache \
  28. --enable-pcntl \
  29. --enable-shmop \
  30. --enable-soap \
  31. --enable-sockets \
  32. --enable-static \
  33. --enable-sysvsem \
  34. --enable-xml \
  35. --with-curl \
  36. --with-gettext \
  37. --with-iconv \
  38. --with-mhash \
  39. --with-mysqli \
  40. --with-pdo-mysql \
  41. --with-pear \
  42. --with-openssl \
  43. --with-zlib \
  44. --with-ldap \
  45. --with-ldap-sasl \
  46. --disable-debug \
  47. --disable-phpdbg
  48. # 编译make-j$(nproc)# 安装makeinstall

3、配置PHP

  1. # 1、配置环境变量cat>> /etc/profile <<EOF
  2. #### php ####
  3. export PATH=$PATH:/usr/local/php/bin
  4. EOFsource /etc/profile
  5. # 2、拷贝配置文件cp /root/php-8.3.10/php.ini-production /usr/local/php/etc/php.ini
  6. cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
  7. cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf
  8. cp /usr/local/php/sbin/php-fpm /usr/local/bin/
  9. cp /usr/local/php/bin/php /usr/local/bin/

4、编译遇到的问题

  1. # 找不到 ldap 的依赖库# 指定/usr/lib64依赖库后仍找不到
  2. configure: error: Cannot find ldap libraries in /usr/lib.
  3. # 解决## 查看是否存在ls /usr/lib64 |grep libldap*
  4. ## 生成软连接ln-s /usr/lib64/libldap* /usr/lib/
  5. ## 重新编译

5、配置启动文件

  1. # vim /lib/systemd/system/php-fpm.service [Unit]Description=The PHP FastCGI Process Manager
  2. After=network.target
  3. [Service]Type=simple
  4. PIDFile=/usr/local/php/var/run/php-fpm.pid
  5. ExecStart=/usr/local/php/sbin/php-fpm --nodaemonize --fpm-config /usr/local/php/etc/php-fpm.conf
  6. ExecReload=/bin/kill -USR2$MAINPID[Install]WantedBy=multi-user.target

6、验证PHP

  1. # 创建php infomkdir-p /var/www/html/
  2. echo"<?php phpinfo();?>"> /var/www/html/index.php
  3. # 配置nginx server部分
  4. server {
  5. listen 8001;
  6. server_name _;
  7. root /var/www/html/;
  8. index index.html index.htm index.php;
  9. location ~ [^/]\.php(/|$){
  10. fastcgi_pass 127.0.0.1:9000;#fastcgi_pass unix:/dev/shm/php-cgi.sock;
  11. index index.php;
  12. fastcgi_index index.php;
  13. include fastcgi.conf;}}

在这里插入图片描述

7、install.sh

  1. #!/bin/bashinstall_php(){user=www
  2. echo"##### 检测网络 #####"if!ping-c1-W1 www.baidu.com &> /dev/null
  3. thenecho"网络不可以用, 请检查网络"exit1fiecho"##### 创建php用户 #####"id$user&> /dev/null
  4. if[$?-eq0];thenecho"$user 已存在"elseuseradd-M-s /sbin/nologin $user&> /dev/null
  5. echo"$user 创建成功"fi# 1.安装依赖echo"##### 安装依赖 #####"packages=(gcc libxml2-devel openssl-devel curl-devel libjpeg-devel libpng-devel libXpm-devel freetype-devel libmcrypt-devel make autoconf ImageMagick-devel libssh2-devel gcc-c++ cyrus-sasl-devel sqlite-devel oniguruma-devel openldap-devel sqlite-devel libcurl-devel)forpkgin$(echo ${packages[*]})do
  6. yum install-y${pkg}>/dev/null 2>&1if[$?-ne0]thenecho"error:install "$pkg" error,try again."exit2fidone# 2.下载安装echo"##### 下载php #####"# wget https://www.php.net/distributions/php-7.0.33.tar.gz >/dev/null 2>&1if[$?-ne0]thenecho-e"\033[31m 下载 'php' 失败\033[0m"exit3fitar-xf php-8.3.10.tar.gz
  7. if[$?-ne0]thenecho-e"\033[31m error: tar xvf 'php' failed\033[0m"exit4fiecho"##### 安装php #####"cd php-8.3.10
  8. if[$?-ne0]thenecho-e"\033[31m error:cd 'php' failed\033[0m"exit5fiCPPFLAGS="-I/usr/include"\LDFLAGS="-L/usr/lib64 -L/usr/lib64 -lldap -llber"\
  9. ./configure \--prefix=/usr/local/php \
  10. --with-config-file-path=/usr/local/php/etc \
  11. --with-config-file-scan-dir=/usr/local/php/etc/php.d \
  12. --disable-ipv6 \
  13. --enable-bcmath \
  14. --enable-calendar \
  15. --enable-exif \
  16. --enable-fpm \
  17. --with-fpm-user=www \
  18. --with-fpm-group=www \
  19. --enable-ftp \
  20. --enable-gd \
  21. --with-external-gd \
  22. --with-jpeg \
  23. --with-freetype \
  24. --with-xpm \
  25. --with-webp \
  26. --enable-mbregex \
  27. --enable-mbstring \
  28. --enable-mysqlnd \
  29. --enable-opcache \
  30. --enable-pcntl \
  31. --enable-shmop \
  32. --enable-soap \
  33. --enable-sockets \
  34. --enable-static \
  35. --enable-sysvsem \
  36. --enable-xml \
  37. --with-curl \
  38. --with-gettext \
  39. --with-iconv \
  40. --with-mhash \
  41. --with-mysqli \
  42. --with-pdo-mysql \
  43. --with-pear \
  44. --with-openssl \
  45. --with-zlib \
  46. --with-ldap \
  47. --with-ldap-sasl \
  48. --disable-debug \
  49. --disable-phpdbg >> /dev/null 2>> stderr.log
  50. if[$?-ne0]thenecho-e"\033[31m error:./configure 'php' failed\033[0m"exit6fimake-j$(nproc)>> /dev/null 2>> stderr.log
  51. if[$?-ne0]thenecho-e"\033[31m make 'php' failed\033[0m"exit7fimakeinstall>/dev/null 2>&1if[$?-ne0]thenecho-e"\033[31m error:make install 'php' failed\033[0m"exit8fi# 3.添加环境变量echo"##### 配置环境变量 #####"cat>> /etc/profile <<EOF
  52. #### php ####
  53. export PATH=$PATH:/usr/local/php/bin
  54. EOFsource /etc/profile >/dev/null 2>&1# 4.配置phpcp /root/php-8.3.10/php.ini-production /usr/local/php/etc/php.ini
  55. cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
  56. cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf
  57. cp /usr/local/php/sbin/php-fpm /usr/local/bin/
  58. cp /usr/local/php/bin/php /usr/local/bin/
  59. }
  60. install_php
标签: android

本文转载自: https://blog.csdn.net/qq_56189058/article/details/141930794
版权归原作者 ———————896 所有, 如有侵权,请联系我们删除。

“PHP8.3安装(编译)”的评论:

还没有评论