nginx 最重要的配置文件nginx.conf:一般的配置我不做解释,网上到处都是,主要对主要的几点进行注释(如下)worker_processes 8;error_log /data/logs/nginx_error.log crit;worker_rlimit_nofile 655...
分类:
其他好文 时间:
2014-10-23 14:04:53
阅读次数:
191
ulimit-a显示当前用户的各种限制。ulimit-n的数值表示每个进程可以打开的文件数目。一般情况下,ulimit-n的数值是1024.当进程打开的文件数目超过此限制时,该进程就会退出。因此,有些时候我们需要修改此限制。如果我们只是普通用户,只是暂时的修改ulimit-n,可以直接shell命..
分类:
系统相关 时间:
2014-10-20 15:18:42
阅读次数:
629
修改/etc/security/limits.conf,例如启动程序的用户为webadmin,则添加以下配置:webadmin - nofile 65536webadmin - nproc 65536其中, nofile是文件句柄数量,线程句...
分类:
编程语言 时间:
2014-09-26 19:48:48
阅读次数:
284
cat <<EOF?>>/etc/security/limits.conf * soft nofile 65536 * hard nofile 65536 * soft nproc unlimited * hard nproc unlimited EOF cat <<EOF >>/etc/security/limits.d/90-nproc.conf * ? ? ? ? ?sof...
分类:
其他好文 时间:
2014-08-22 11:04:06
阅读次数:
491
查过网上的资源,基本都是认为是php线程打开文件句柄受限导致的错误。具体的解决的办法如下:1、提升服务器的文件句柄打开打开/etc/security/limits.conf : (增加)* soft nofile 51200* hard nofile 51200# vi /etc/sec...
分类:
其他好文 时间:
2014-07-30 17:10:43
阅读次数:
178
vi/etc/security/limits.confroot soft nofile 4096root hard nofile 65536root soft noproc 2047root hard noproc 16384root soft stack 10240root hard stack....
分类:
系统相关 时间:
2014-07-23 14:59:16
阅读次数:
291
定义文件状态枚举:0-路径为空,1-存在文件,2-路径不为空,但文件不存在 public
enum FileExsitStatus { NoPath=0, FileExsit=1, NoFile=2 }利用File文件操作类判断文件是否存在:
/...
分类:
其他好文 时间:
2014-05-24 05:43:08
阅读次数:
226
nginx的配置:正常运行的必备配置:1、userusername[groupname];指定运行worker进程的用户和组2、pid/path/to/pidfile_namenginx的pid文件3、worker_rlimit_nofile#;一个worker进程所能够打开的最大文件句柄数;4、worker_rlimit_sigpending#;设定每个用户能够发往worker进程的..
分类:
其他好文 时间:
2014-05-07 22:23:03
阅读次数:
439