如何在linux下手动构建PHP项目运行环境(lnmrp)

引用https://www.cnblogs.com/studyandstudy/p/16190139.html

前言

我之前在构建PHP项目运行环境,直接采用宝塔或者PHPstduy等一键集成安装工具,虽然操作简单,运营维护起来也方便.但是总觉得不自己手动安装一次,总感觉少点啥一样;

所以今天,我们进行一次手动安装PHP运行环境并部署项目运行.

要准备的工具

硬件 : 云服务器/虚拟机

操作系统 : Alibaba-Cloud-Linux-2.1903-LTS-64位/centos7

连接[云服务器/虚拟机]的远程工具 : xshell/MobaXterm_Personal等

nginx的安装

nginx介绍

Nginx (engine x) 是一个高性能的HTTP和反向代理web服务器,Nginx是一款轻量级的Web 服务器/反向代理服 务器及电子邮件(IMAP/POP3)代理服务器,在BSD-like 协议下发行。

其特点是占有内存少,并发能力强,事实上nginx的并发能力在同类型的网页服务器中表现较好,中国大陆使用nginx网站用户有:百度、京东、新浪、网易、腾讯、淘宝等。

反向代理

反向代理服务器位于用户与目标服务器之间,但是对于用户而言,反向代理服务器就相当于目标服务器,即用户直接访问反向代理服务器就可以获得目标服务器的资源。

同时,用户不需要知道目标服务器的地址,也无须在用户端作任何设定。

反向代理服务器通常可用来作为Web加速,即使用反向代理作为Web服务器的前置机来降低网络和服务器的负载,提高访问效率。

负载均衡

负载均衡(Load Balance)其意思就是分摊到多个操作单元上进行执行,例如Web服务器、FTP服务器、企业关键应用服务器和其它关键任务服务器等,从而共同完成工作任务。

单个服务器解决不了,我们增加服务器的数量,然后将请求分发到各个服务器上面,将原先请求到单个服务器上面的情况改为将请求分发到多个服务器上,将负载分发到不同的服务器,这就是所说的负载均衡。

动静分离

为了加快网站的解析速度,可以把动态页面和静态页面由不同的服务器来解析,加快解析速度,降低单个服务器的压力。

安装nginx前的准备

安装make

yum install -y gcc automake autoconf libtool make

安装g++

yum install -y gcc gcc-c++

安装其他扩展

一般我们都需要先装pcre, zlib,前者为了重写rewrite,后者为了gzip压缩。

安装pcre
http://jaist.dl.sourceforge.net/project/pcre下载最新的 PCRE 源码包,使用下面命令下载编译和安装 PCRE 包
# 进入opt文件夹
cd /opt
# 下载pcre-8.45.tar.gz

wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.45/pcre-8.45.zip   # 解压缩
unzip -o pcre-8.45.zip # 移动 mv pcre-8.45 /usr/local/pcre # 进入文件夹 cd /usr/local/pcre # 将pcre安装在/usr/local/pcre ./configure # 进行编译安装 make && make install

安装zlib

http://zlib.net/zlib-1.2.13.tar.gz 下载最新的 zlib 源码包,使用下面命令下载编译和安装 zlib包:

# 进入opt文件夹
cd /home
# 下载
wget http://zlib.net/zlib-1.2.13.tar.gz
# 解压缩zlib
tar -zxvf zlib-1.2.13.tar.gz
# 移动
mv zlib-1.2.13 /usr/local/zlib
# 进入解压后的zlib文件夹
cd /usr/local/zlib
# 将zlib安装在/usr/local/zlib
./configure
# 进行编译安装
make && make install

安装openssl
cd /home
1. 下载安装wget
yum -y install wget

2. 获取openssl源码包 wget https://www.openssl.org/source/openssl-1.1.1t.tar.gz
3. 安装openssl 所需依赖
yum -y install gcc gcc-c++ openssl-devel libstdc++* libcap* wget pam-devel zlib-devel perl
4. 解压编译openssl
# 解压下载好的openssl源码包并进入其目录 tar -zxvf openssl-1.1.1t.tar.gz mv openssl-1.1.1t /usr/local/openssl
# 进入解压后的openssl文件夹 

cd /usr/local/
openssl
# 将openssl安装在/usr/local/openssl
./config threads zlib shared enable-camellia

# 进行编译安装
make && make install


5. 替换旧版openssl

查找一下libssl.so.1.1的位置,然后连接到/usr/lib64/libssl.so.1.1即可。如下我的位置是在/usr/local/lib64/libssl.so.1.1,连接到/usr/lib64/libssl.so.1.1就可以了。

[root@localhost ~]# find / -name libssl.so.1.1
/usr/local/lib64/libssl.so.1.1
[root@localhost ~]# ln -s /usr/local/lib64/libssl.so.1.1 /usr/lib64/libssl.so.1.1
[root@localhost ~]# ln -s /usr/local/lib64/libcrypto.so.1.1 /usr/lib64/libcrypto.so.1.1
[root@localhost ~]# openssl version
OpenSSL 1.1.1t


6. 查看openssl版本
openssl version

注:
安装完openssl后使用 ssh -V 查看依然是旧版openssl, 是因为openssh是rpm/yum安装的调用的openssl依旧是旧版,不影响使用。

如果看不顺眼可以编译升级新版openssh解决。


安装nginx

先到nginx官网(http://nginx.org/en/download.html)下载最新的nginx编译安装包,我这里下载的是nginx1.23.3

1、下载nginx安装包

//进入home文件夹

cd /home
wget http://nginx.org/download/nginx-1.23.3.tar.gz


2、把压缩包解压到/home
tar -zxvf nginx-1.23.3.tar.gz


3、切换到cd /home/nginx-1.23.3/下面

# 进入解压好的
cd /home/nginx-1.23.3
# 选择安装位置以及开放相应模块

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-openssl=/usr/local/openssl --with-http_gzip_static_module --with-file-aio --with-http_realip_module  --with-pcre=/usr/local/pcre --with-zlib=/usr/local/zlib


# 编译安装
make && make install

PHP安装

PHP介绍

PHP(“PHP: Hypertext Preprocessor”,超文本预处理器的字母缩写)是一种被广泛应用的开放源代码的多用途脚本语言,它可嵌入到 HTML中,尤其适合 web 开发。

nginx如何运行PHP项目

nginx本身不能处理PHP,它只是个web服务器,当接收到请求后,如果是php请求,则发给php解释器处理,并把结果返回给客户端。

nginx一般是把请求发fastcgi管理进程处理,fascgi管理进程选择cgi子进程处理结果并返回被nginx

PHP-FPM是一个PHP FastCGI管理器,是只用于PHP的,可以在 http://php-fpm.org/download下载得到.

PHP-FPM其实是PHP源代码的一个补丁,旨在将FastCGI进程管理整合进PHP包中。必须将它patch到你的PHP源代码中,在编译安装PHP后才可以使用。

新版PHP已经集成php-fpm了,不再是第三方的包了,推荐使用。

PHP-FPM提供了更好的PHP进程管理方式,可以有效控制内存和进程、可以平滑重载PHP配置,比spawn-fcgi具有更多优点,所以被PHP官方收录了。

在./configure的时候带 –enable-fpm参数即可开启PHP-FPM,其它参数都是配置php的

PHP安装前的准备

基础运行环境安装

#以下已经安装了可以不用安装

yum -y install gcc automake autoconf libtool make

yum -y install gcc gcc-c++ glibc

# 可以直接安装,也可以在编译的时候再安装
yum -y install libtidy-deve libtidy libicu-devel libmcrypt-devel mhash-devel libxslt-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel libidn libidn-devel openssl openssl-devel sqlite-devel sqlite

安装oniguruma

oniguruma是一个处理正则表达式的库,我们之所以需要安装它,是因为在安装php7.4的过程中,mbstring的正则表达式处理功能对这个包有依赖性,所以我们要先安装这个库

# 下载
wget https://github.com/kkos/oniguruma/archive/v6.9.4.tar.gz -O oniguruma-6.9.4.tar.gz
# 解压缩
tar -xvf oniguruma-6.9.4.tar.gz
# 移动
mv oniguruma-6.9.4 /usr/local/php_extension/niguruma
# 进入
cd /usr/local/php_extension/niguruma
# 编译
./autogen.sh
# 配置
./configure --prefix=/usr --libdir=/lib64
# 安装
make && make install

PHP安装

#进入opt文件夹
cd /home
#下载
wget http://cn2.php.net/distributions/php-8.2.3.tar.gz
# 解压
tar -zxvf php-8.2.3.tar.gz
# 进入PHP文件夹
cd php-8.2.3
# 配置安装

./configure --prefix=/usr/local/php \
--with-config-file-path=/usr/local/php/etc \
--enable-inline-optimization --disable-debug \
--disable-rpath --enable-shared --enable-opcache \
--enable-fpm --enable-mysqlnd --with-fpm-user=www \
--with-fpm-group=www \
--with-mysql=mysqlnd \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-gettext \
--enable-mbstring \
--enable-mbregex \
--with-iconv \
--with-tidy \
--with-mcrypt \
--with-mhash \
--with-xmlrpc \
--enable-wddx \
--enable-bcmath \
--enable-intl \
--enable-soap \
--enable-exif \
--enable-calendar \
--with-libxml-dir \
--enable-pcntl \
--enable-shmop \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-sockets \
--enable-tokenizer \
--enable-ftp \
--enable-session \
--with-curl --with-zlib=/usr/local/zlib \
--enable-zip \
--with-bz2 \
--with-readline \
--with-gd \
--with-xsl \
--enable-gd-native-tty \
--enable-static \
--enable-zend-multibyte \
--enable-short-tags \
--with-png-dir \
--with-freetype-dir=/usr/local/freetype \
--with-jpeg-dir=/usr/local/jpeg/lib

 

#后续这些功能可以视情况追加,但需要提前安装好相应环境。其中问题最大的使用--with-openssl,在centos8上存在库调用问题
--with-curl --with-gettext --with-kerberos --with-libdir=lib64 --with-openssl --with-pdo-sqlite --with-pear --with-mhash --with-ldap-sasl --with-xsl --with-zlib --with-zip -with-bz2 --enable-fpm --enable-pdo --enable-bcmath --enable-opcache --enable-pcntl --enable-shmop --enable-sysvsem --enable-xml --enable-sysvsem --enable-cli --enable-intl --enable-calendar --enable-static --enable-mysqlnd --with-iconv

 

 

-----------------------------------------------注解

# #编译前配置
[root@localhost php-8.1.12]# ./configure --prefix=/usr/local/php/ \ #指定安装位置
--with-config-file-path=/usr/local/php/etc/ \ #设置php配置文件(php.ini)的存放位置,
#一般来说安装php的时候只需要指定这两个路径即可,其他的则是指定php支持哪一些组件了
--with-apxs2=/usr/local/apache2/bin/apxs \ #调用apache2
--with-mysql=/usr/local/mysql/ \ #调用mysql
--with-libxml=/usr/local/libxml2/ \ #调用libxml2库
--with-libjpeg=/usr/local/jpeg6/ \ #调用jpeg库
--with-libpng=/usr/local/libpng/ \ #调用libpng库
--with-freetype=/usr/local/freetype/ \ #调用freetype库
--with-mcrypt=/usr/local/libmcrypt/ \ #调用libmcrypt库
--with-mysqli=/usr/local/mysql/bin/mysql_config #增加MysqlLi功能
--with-pdo-mysql=/usr/local/mysql \ #启用mysql的pdo模块支持
--enable-soap \ #支持SOAP和Web Services
--enable-mbstring=all \ #支持多字节字符串
--enable-mbregex \ #支持处理正则表达式
--enable-sockets \ #支持socket(套接字)通信
--enable-gd \ #支持gd库

#后续这些功能可以视情况追加,但需要提前安装好相应环境。其中问题最大的使用--with-openssl,在centos8上存在库调用问题
--with-curl --with-gettext --with-kerberos --with-libdir=lib64 --with-openssl --with-pdo-sqlite --with-pear --with-mhash --with-ldap-sasl --with-xsl --with-zlib --with-zip -with-bz2 --enable-fpm --enable-pdo --enable-bcmath --enable-opcache --enable-pcntl --enable-shmop --enable-sysvsem --enable-xml --enable-sysvsem --enable-cli --enable-intl --enable-calendar --enable-static --enable-mysqlnd --with-iconv

 

 

配置成功会出现以下信息  

  1. +--------------------------------------------------------------------+
  2. | License: |
  3. | This software is subject to the PHP License, available in this |
  4. | distribution in the file LICENSE. By continuing this installation |
  5. | process, you are bound by the terms of this license agreement. |
  6. | If you do not agree with the terms of this license, you must abort |
  7. | the installation process at this point. |
  8. +--------------------------------------------------------------------+
  9. Thank you for using PHP.

# 安装
make && make install

make all install

判断是否安转成功

 

  1. > cd /usr/local/php/bin //进入php的安装目录下的bin
  2. > ./php --version //查看版本号

安装成功后,PHP的目录

配置到环境变量

vim /etc/profile
PHP_PATH=/usr/local/php
export PATH=$PATH:/$PHP_PATH/bin

export PATH=/usr/local/php/bin:/usr/local/nginx/sbin:$PATH source /etc/profile php -v

安装完成之后,需要生成php-fpm配置文件

cd /usr/local/php
cp etc/php-fpm.conf.default etc/php-fpm.conf

cd /usr/local/php/etc/php-fpm.d
cp www.conf.default www.conf

重启php-fpm


killall php-fpm && /usr/local/php/sbin/php-fpm

重启php-fpm并指定php.ini的位置:
killall php-fpm
/usr/local/php/sbin/php-fpm -c /usr/local/php/etc/php.ini

PHP常用扩展的安装

将php安装包中的php.ini-production复制到/usr/local/php/lib

# 复制
cp
/home/php-8.2.3/php.ini-production /usr/local/php/etc/php.ini

#验证是否已经加载到配置
php --ini

#查看当前php所使用的的module
php -m

编辑/usr/local/php/etc/php.ini,找到;extension_dir =把前面的分号去掉并更正现有的编译路径(/usr/local/php/lib/php/extensions/no-debug-non-zts-20220829/),找到;extension=模块名,选择要打开的模块,并把前面的分号去掉,我这里打开的模块

重启php-fpm之后,会有下图提示你,你打开的模块没有安装.这时就要回到php8.2.3的安装包中找到ext扩展包,根据下图提示进行安装php扩展

sbin/php-fpm

安装bz2扩展

cd /home/php8.2.3/ext/bz2
phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install
php -m

其余的扩展同bz2扩展的安装步骤一直

安装关于mysql数据库的扩展时的操作注意

版本在PHP7朝上的,直接在编译安装是直接开放即可,无需做二次编译模块

mysql安装

下载mysql安装包,官网地址(https://dev.mysql.com/downloads/mysql/5.7.html)

首先查询是否有旧的mariadb安装包,有就卸载掉

rpm -qa | grep mariadb
rpm -e --nodeps mariadb-libs-5.5.68-1.1.al7.x86_64

安装新的mysql

cd /opt
wget https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz
tar -zxvf mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz
mv mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz /usr/local/mysql
groupadd mysql
useradd -r -g mysql mysql
chown -R mysql:mysql /usr/local/mysql

创建mysql的配置文件(my.cnf)

[client]
# 设置mysql客户端默认字符集
default-character-set = utf8mb4
#如果不设置会报错ERROR 2002 (HY000): Can't connect to local MySQL server through socket
socket=/usr/local/mysql/data/mysql.sock

[mysqld]
#设置3306端口
port=3306
character-set-server = utf8mb4

# 设置mysql的安装目录
basedir=/usr/local/mysql

# 设置mysql数据库的数据的存放目录
datadir=/usr/local/mysql/data
socket=/usr/local/mysql/data/mysql.sock

# 禁用主机名解析
skip-name-resolve

# 创建新表时将使用的默认存储引擎
default-storage-engine=INNODB
lower_case_table_names=1

# 过小可能会导致写入(导入)数据失败
max_allowed_packet = 256M
group_concat_max_len = 10240

# 允许最大连接数
max_connections=200

# 提到 join 的效率
join_buffer_size = 16M
# 事务日志大小
innodb_log_file_size = 256M
# 日志缓冲区大小
innodb_log_buffer_size = 4M
# 事务在内存中的缓冲
innodb_log_buffer_size = 3M

配置完成后

chown -R mysql:mysql /usr/local/mysql/data

bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data

启动mysql

/usr/local/mysql/support-files/mysql.server start

将mysql添加到自启动中

cp /usr/local/mysql/support-files/mysql.server /etc/rc.d/init.d/mysqld
chmod +x /etc/rc.d/init.d/mysqld
chkconfig --add mysqld
chkconfig --list mysqld

验证mysql是否加入到系统自启动中

登录mysql,修改root密码

# 建立一个链接文件。因为系统默认会查找/usr/bin下的命令。
ln -s /usr/local/mysql/bin/mysql /usr/bin
# 建立一个链接文件.因为系统默认会查找/tmp/mysql.sock(如果没有抛出这个错误ERROR2002(HY000),就无需设置)
ln -s /usr/local/mysql/data/mysql.sock /tmp/mysql.sock
mysql -uroot -p

Enter password:
#登录以后,修改用户密码
mysql> set password for root@localhost=password("用户新密码");
#设置root远程登录
mysql> GRANT ALL PRIVILEGES ON *.* TO'root'@'%' IDENTIFIED BY '用户密码' WITH GRANT OPTION;
Query OK, 0 rows affected, 1 warning (0.00 sec)
#更新权限
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)

测试连接

到此mysql的就基本安装完成了.

php如何连接mysql

请回到PHP安装常用扩展中

redis安装

cd /opt
wget https://github.com/antirez/redis/archive/5.0.7.tar.gz 
tar -zxvf redis-5.0.7.tar.gz
mv redis-5.0.7 /usr/local/redis
cd /usr/local/redis
make && make PREFIX=/usr/local/redis install

redis远程连接

修改redis.conf文件

1.注释掉bind 127.0.0.1
2设置后台启动,将 daemonize no 改为 daemonize yes
3.protected-mode no #默认yes,开启保护模式,限制为本地访问

重启

bin/redis-server /usr/local/redis/redis.conf

php如何连接redis

下载redis扩展,官网地址(https://pecl.php.net/package/redis)

cd /opt
wget https://pecl.php.net/get/redis-5.3.7.tgz
tar -zxvf redis-5.3.7.tgz
mv redis-5.3.7 /usr/local/php_extension/redis
cd /usr/local/php_extension/redis
phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install

编译安装完成后,打开php.ini,添加上extension=redis,并重启php-fpm

PHP项目部署

1.创建一个单独的项目文件夹,上传或者使用git拉取项目代码,我这里使用的是上传项目

2.解压缩项目代码(如果是拉取,省略该步骤)

tar -zxvf 项目代码.tar.gz

3.创建数据库,并将数据表导入到该库中,建议是数据库管理工具(如:Navicat等)

php目录下必须有权限

chmod -R 777 /gds/zstwTcs

 

8.1 在/usr/local/nginx/html下创建一个index.php文件并写入

<?php
phpinfo();
?>

4.在nginx中进行站点配置,打开nginx.conf配置,修改server中的信息

server { // 这个在windows 下配置是ok的,linux 下不知道是否可以生效! 待后续验证
listen 8999;
server_name localhost;

location / {
root /gds/bgman/public; # 这里是tp5 public 入口文件

#root html;
index index.php index.html index.htm; 
try_files $uri $uri/ /index.php?s=$uri&$args; # 表示 #如果请求不是文件或目录,则将uri交给index.php处理,同时保留参数
if ( !-e $request_filename) {
rewrite ^(.*)$ /index.php/?s=$1 last; #进行URL重写,将默认访问URL中的index.php?s=通过rewrite隐藏
break;
}
}
location ~ \.php(.*)$ {
root /gds/bgman/public; #tp5 入口文件
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
}

 

server {
        listen       80;
        server_name blog.lt996.cn;
        root /data/tblog/public;
        error_page   500 502 503 504  /50x.html;
        index index.php;
        charset utf-8;
        location / {
          # try_files $uri @laravels;
          try_files $uri $uri/ /index.php?$query_string;
        }
        location ~ \.php$ {
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
        }    
    }

重启nginx,并验证站点

至此,网站就部署好了

网站加速

原因

就是页面响应速度太慢了,提高页面加载速度

解决办法

1.添加swoole扩展,安装方式跟php的其他扩展安装方式一致,本次使用的swoole版本是4.4.12,安装完成后

2.下载hhxsv5/laravel-s扩展,我这采用的是composer,并添加,修改配置加速配置

composer require hhxsv5/laravel-s

具体修改的方法(http://www.phpxs.com/post/6623/)

3.修改nginx站点配置

upstream swoole {
    # 通过 IP:Port 连接
    server 127.0.0.1:5200 weight=5 max_fails=3 fail_timeout=30s;
    # 通过 UnixSocket Stream 连接,小诀窍:将socket文件放在/dev/shm目录下,可获得更好的性能
    #server unix:/yourpath/laravel-s-test/storage/laravels.sock weight=5 max_fails=3 fail_timeout=30s;
    #server 192.168.1.1:5200 weight=3 max_fails=3 fail_timeout=30s;
    #server 192.168.1.2:5200 backup;
    #keepalive 16;
}

server {
        listen       80;
        server_name blog.lt996.cn;
        root /data/tblog/public;
        error_page   500 502 503 504  /50x.html;
        index index.php;
        charset utf-8;
        location / {
          try_files $uri @laravels;
          #try_files $uri $uri/ /index.php?$query_string;
        }
        #location ~ \.php$ {
        #    fastcgi_pass 127.0.0.1:9000;
        #    fastcgi_index index.php;
        #    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        #    include fastcgi_params;
        #}
        #location = /50x.html {
        #    root   html;
        #}
        location @laravels {
           proxy_connect_timeout 60s;
           proxy_send_timeout 60s;
           proxy_read_timeout 120s;
          proxy_http_version 1.1;
          proxy_set_header Connection "";
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Real-PORT $remote_port;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_set_header Host $http_host;
          proxy_set_header Scheme $scheme;
          proxy_set_header Server-Protocol $server_protocol;
          proxy_set_header Server-Name $server_name;
          proxy_set_header Server-Addr $server_addr;
          proxy_set_header Server-Port $server_port;
          # “swoole”是指upstream
          proxy_pass http://swoole;
      }
}

安装部署中的问题

出现could not find driver错误

1.查询项目配置是否的mysql是否连接成功

2.查询php.ini是否安装php_mysql模块,完成后请杀死之前php-fpm在启动

3.若安装了php_mysql模块,仍然出现该错误.请重新编译时,加上mysql的安装路径,编译完成后请杀死之前php-fpm在启动

./configure --prefix=/usr/local/php --with-pdo-mysql=/usr/local/mysql
make all install

ps -ef | grep php-fpm

kill -9 主进程ID 子进程ID ...
posted @ 2023-03-02 12:47  全琪俊  阅读(357)  评论(0编辑  收藏  举报