另附豆瓣技术贴:https://www.douban.com/note/315222037/ 1、php-fpm优化参数介绍他们分别是:pm、pm.max_children、pm.start_servers、pm.min_spare_servers、pm.max_spare_servers。pm:表 ...
分类:
Web程序 时间:
2019-04-02 12:22:08
阅读次数:
786
开发的时候碰到如下的错误(PHP-FPM+apache),所以想好好理解下Segmentation fault. 参考了文章 Segmentation fault到底是何方妖孽 维基百科的解释如下: 存储器区块错误(英语:Segmentation fault,经常被缩写为segfault),又译为存 ...
分类:
其他好文 时间:
2019-03-29 17:27:32
阅读次数:
139
新lnmp环境调试项目时,nginx报错如下: 解决: 发现php-fpm.conf是以套接字方式通信,而nginx是以端口方式通信,见下图: 将nginx.conf修改为如下,重新reload即可 ...
分类:
其他好文 时间:
2019-03-25 20:28:21
阅读次数:
1057
LAMP架构本章内容LAMP介绍PHP配置实现LAMP应用phpMyadmin实现LAMP应用博客系统wordpressXcache加速PHP-FPM模式源码编译LAMP编译安装FPM模式的LAMP==LAMP介绍==LAM(M)P:L:linuxA:apache(httpd)M:mysql,mariadbM:memcachedP:php,perl,pythonWEB资源类型:静态资源:原始形式与
分类:
其他好文 时间:
2019-03-24 21:44:50
阅读次数:
175
下载Nginx包下载地址:http://nginx.org/download/下载后解压nginx到/usr/local/后,执行编译,编译时需要预先加模块;通过Nginx支持PHP编程本人通过yum源安装php-fpm配置Nginx.conf文件worker_processes1;events{worker_connections1024;}http{includemime.types;defa
分类:
其他好文 时间:
2019-03-20 23:29:49
阅读次数:
266
由于支付宝SDK只支持php7.1,因为需要删除之前安装的7.2版,进行降级。通过yum remove不能完全删除php,必须通过rpm方式卸载。由于php安装模块间有依赖,因此需要按顺序进行卸载。如下: Java代码 rpm -e php72w-fpm-7.2.13-1.w7.x86_64 rpm ...
分类:
Web程序 时间:
2019-03-19 12:31:14
阅读次数:
562
使用fpm制作rpm包 安装如下 [root@web01 ~]# yum install -y gcc zlib zlib-devel wget http://ruby.taobao.org/mirrors/ruby/ruby-1.8.7-p358.tar.gz wget http://files.... ...
分类:
其他好文 时间:
2019-03-19 12:09:26
阅读次数:
164
一,下载源码 http://www.wecenter.com/downloads/ 二,编写nginx 配置文件 三,上传源码到站点目录 四,解压 五,数据库创建用户密码 六,打开网页进行测试 发现目录权限都显示红叉 1,将php-fpm下的www.conf 文件中内容 属主属组改成nginx 2, ...
分类:
其他好文 时间:
2019-03-18 15:18:58
阅读次数:
215
1. 找到php的安装位置。如: 2. 进入安装目录下的etc/php-fpm.d目录,然后你会看到: 3. 打开www.conf,搜索listen关键字,你会发现画红圈圈的就是php-fpm监听的端口。 ...
分类:
Web程序 时间:
2019-03-17 20:07:23
阅读次数:
365
This might give you a broader understanding of their difference: CGI: (common gateway interface) It is a specification "protocol" for transferring inf ...
分类:
Web程序 时间:
2019-03-10 20:47:43
阅读次数:
233