LNMP 代表的就是:Linux 操作系统下,Nginx + MySQL + PHP 这种网站服务器架构 工作流程:Nginx 直接处理静态请求,动态请求会转发给 php-fpm ( php 是作为一个独立服务存在的,这个服务叫做 php-fpm ) ...
分类:
其他好文 时间:
2019-01-28 12:15:30
阅读次数:
142
解决open()failed(13:Permissiondenied)whilereadingupstream的问题前言:[root@testnginx]#ps-ef|grepnginxroot1686102018?00:00:00nginx:masterprocess/xxdata/nginx/sbin/nginxnginx5443544202018?00:00:33php-fpm:poolww
分类:
其他好文 时间:
2019-01-28 01:31:49
阅读次数:
317
总结: 最合适的解决方案是增加更多的四元组数目,比如,服务器监听端口,或服务器IP,让服务器能容纳足够多的TIME-WAIT状态连接。在我们常见的互联网架构中(NGINX反代跟NGINX,NGINX跟FPM,FPM跟redis、mysql、memcache等),减少TIME-WAIT状态的TCP连接 ...
分类:
其他好文 时间:
2019-01-25 18:47:44
阅读次数:
178
Centos7 部署知乎出现上图问题 解决方法: [root@web02 ~]# vim /etc/php.ini #修改配置文件 session.auto_start = 0 #这条设置成0 [root@web02 ~]# systemctl restart php-fpm.service #重启 ...
分类:
其他好文 时间:
2019-01-22 17:34:55
阅读次数:
162
###在kubernetes中搭建LNMP环境,并安装Discuzx本实验,需要已经搭建好kubernetes集群和harbor服务。首先克隆本项目:gitclonehttps://github.com/donxan/k8s_lnmp_discuzx.git####下载镜像dockerpullmysql:5.7dockerpullricharvey/nginx-php-fpm####用docker
分类:
Web程序 时间:
2019-01-21 01:09:00
阅读次数:
324
author:headsen chen date: 2019-01-19 14:57:09 个人原创博客,转自请注明出处和作者,否则追究法律责任 1,安装依赖和语言包 2,添加阿里云的Rubygems仓库,外国的源慢 3,移除原生的Ruby仓库 4,安装fpm 此时报错: 5,解决办法是 先安装rv ...
分类:
其他好文 时间:
2019-01-19 16:16:18
阅读次数:
227
对于高版本PHP, 例如PHP 5.6, 重启PHP命令: 如果提示权限不足, 请使用: 1 sudo service php-fpm restart 1 sudo service php-fpm restart 1 sudo service php-fpm restart 1 sudo servi ...
分类:
Web程序 时间:
2019-01-19 15:19:45
阅读次数:
146
nginx报错提示: *963623 recv() failed (104: Connection reset by peer) while reading response header from upstream .. php-fpm.log报错提示: WARNING: [pool www] c ...
分类:
Web程序 时间:
2019-01-18 14:22:28
阅读次数:
521
[root@web01 ~]# systemctl start php-fpm Job for php-fpm.service failed because the control process exited with error code. See "systemctl status php-f ...
分类:
Web程序 时间:
2019-01-14 20:23:12
阅读次数:
1016
经典互联网架构 netstat -tulnp |grep 80ss -tulnp|grep 80 前期铺垫: 1. Linux要能上网2. 掌握Linux软件包安装方法2.1 rpm包管理 2.1.1 光盘挂载 mount /dev/cdrom /mnt cd /mnt ls2.1.2 安装rpm包 ...
分类:
系统相关 时间:
2019-01-14 00:22:02
阅读次数:
229