php-fpm进程管理一共有三种模式:ondemand、static、dynamic,我们可以在同一个fpm的master配置三种模式,看下图1。php-fpm的工作模式和nginx类似,都是一个master,多个worker模型。每个worker都在accept本pool内的监听套接字(linux ...
分类:
Web程序 时间:
2020-07-12 19:07:51
阅读次数:
86
CGICGI(Common Gateway Interface),公共网关接口,它是Web服务器与外部应用程序(CGI程序)之间传递信息的接口标准。如请求/index.html,那么web server会去指定目录下找到这个文件(如果存在的话)发送给浏览器,这里分发的是静态数据。那么,请求的是/in ...
分类:
Web程序 时间:
2020-07-12 18:44:45
阅读次数:
74
一、编译安装nginx 1、下载nginx # wget http://nginx.org/download/nginx-1.16.1.tar.gz 2、安装源码安装依赖软件:pcre-devel zlib-devel gcc gcc-c++ make 检测依赖是否安装 #rpm -q pcre-d ...
分类:
其他好文 时间:
2020-07-12 16:55:15
阅读次数:
71
系统环境要求 centos7,yum源正常使用,ip设置为:192.168.8.201; LAMP环境配置 ###软件环境设置systemctl disable firewalld;systemctl stop firewalld;systemctl status firewalldsetenfor ...
分类:
Web程序 时间:
2020-07-12 16:54:30
阅读次数:
66
1.下载安装 MySQL最新下载地址:https://dev.mysql.com/downloads/mysql/ 选择的是Linux 64位通用的二级制版本,这样不在需要进行编译安装,系统安装依赖库后就可以直接使用。 2. 安装依赖库 yum install numactl yum install ...
分类:
数据库 时间:
2020-07-12 14:58:44
阅读次数:
105
1.停止命令 pkill php-fpm 2.重启或启动命令 php-fpm -R 3.查看php是否启动 ps -ef | grep php 或者 ps -A | grep -i php ...
分类:
Web程序 时间:
2020-07-11 17:38:20
阅读次数:
72
目的:修改python解释器用于代码加密获取源码aptsourcepython2.7-minimal由于系统默认的python版本是2.7.16,下载的源码是2.7.16-2+deb10u1,直接编译安装,会导致系统命令如aptinstall无法执行,原因是包依赖冲突,因此要修改打包的版本号,修改的方式进入到源码目录,修改debian/changelog文件,我是直接把python2.7(2.7.
分类:
编程语言 时间:
2020-07-10 18:35:39
阅读次数:
85
Centos7.5 编译安装apr-util时报错:xml/apr_xml.c:35:19: fatal error: expat.h: No such file or directory 解决方案:yum install expat-devel 编译pcre 报错 error: Invalid C ...
分类:
Web程序 时间:
2020-07-10 13:39:29
阅读次数:
92
一、单行 <div class="div">这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文</div> .div { background-color: green; width: 100px; overflow: hidden; text-overflow: ellips ...
分类:
Web程序 时间:
2020-07-10 12:55:11
阅读次数:
83