#user nobody; # #开启的worker数量,这里保存和cpu数量一致 worker_processes 6; worker_cpu_affinity 000001 000010 000100 001000 010000 100000; #制定error日志的格式为crit(error日... ...
分类:
其他好文 时间:
2019-06-29 23:48:51
阅读次数:
133
查一下网站目录下wp-content目录的权限, # ls -l drwxr-xr-x 5 nobody 65534 4096 Feb 3 2016 wp-content 修改wp-content目录权限就OK了。 chmod -R a+w wp-content ...
分类:
Web程序 时间:
2019-06-28 23:01:46
阅读次数:
165
1、查看系统是否有指定的账号 getent passwd 账号名称 [root@b ~]# getent passwd nobody 2、查询软件包中的执行命令 rpm -q --scripts 软件包名 [root@b ~]# rpm -q --scripts nginx 3、查看yum安装历史记 ...
分类:
其他好文 时间:
2019-06-23 19:23:51
阅读次数:
134
大数据学习第五天 ulimit 查看进程最大文件描述符创建数 -a all详细信息 nginx_config 文件记录 #user nobody ngx_work进程属主 worker_processes 单核进程数 worker_connections 最大连接数 nginx单连接双文件描述符 一 ...
分类:
其他好文 时间:
2019-06-11 20:49:08
阅读次数:
157
虚拟机的网络连接的三种方式: 1、桥接模式: 好处 大家都在同一个网段,相互可以通讯。 坏处 因为ip地址有限,可能造成ip冲突。 2、Nat[网络地址转换模式] 好处:虚拟机不占用其他的ip,所以不会ip冲突 坏处:内网的其他人不能和虚拟机通讯。 3、主机模式: 单独的一台电脑 Vi/vim命令: ...
分类:
系统相关 时间:
2019-06-11 01:01:42
阅读次数:
146
#user nobody;worker_processes 1; #error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info; #pid logs/nginx.pid; event ...
分类:
其他好文 时间:
2019-05-24 18:38:24
阅读次数:
134
相信可能成就一切可能,相信不可能就是自废武功!!!nfs服务器搭建文档1.先打印系统版本cat/etc/redhat-releaseuname-runame-m2.在所有需要使用nfs的服务器上安装nfs-utilsrpcbindyuminstallnfs-utilsrpcbind-yrpm-qanfs-utilsrpcbind安装好nfs系统会创建一个nfsnobody用户3.必须先启动rpcb
分类:
其他好文 时间:
2019-05-23 00:59:52
阅读次数:
192
1. Nginx 进程模型简介 多进程+多路复用 master 进程 、 worker 进程 启动nginx,查看nginx的线程,可以发现: worker_processes 1 cpu 总核心数 epoll . select .... #user nobody; 用户 worker_proces ...
分类:
其他好文 时间:
2019-05-23 00:14:57
阅读次数:
122
默认的 nginx 配置文件 nginx.conf 内容如下: 1 #user nobody; 2 worker_processes 1; 3 4 #error_log logs/error.log; 5 #error_log logs/error.log notice; 6 #error_log ...
分类:
其他好文 时间:
2019-05-16 23:00:16
阅读次数:
157
记录 /srv/logs/nginx/ log { create 0644 nobody nobody daily rotate 10 missingok notifempty compress sharedscripts postrotate /bin/kill USR1 2 /dev/null ...
分类:
其他好文 时间:
2019-05-06 22:09:13
阅读次数:
177