技巧 -Linux内核参数调整办法 ulimit设置 ulimit -n 要调整为100000甚至更大。 命令行下执行 ulimit -n 100000即可修改。如果不能修改,需要设置 /etc/security/limits.conf,加入 * soft nofile 262140 * hard ...
分类:
系统相关 时间:
2016-08-26 15:26:03
阅读次数:
240
使用命令ulimit -a查看,其中open files就是最大连接数,一般情况下web服务器最大连接数的设置不能超过它 修改最大连接数:vi /etc/security/limits.conf 文件末尾添加 *soft nofile 32768*hard nofile 32768 添加后保存 修改 ...
分类:
其他好文 时间:
2016-08-21 10:57:57
阅读次数:
224
Linux 文件系统设置 文件句柄数 ulimit -n 查看 echo "* - nofile 65536" >> /etc/security/limits.confecho "* soft noproc 65536" >> /etc/security/limits.confecho "* har ...
分类:
其他好文 时间:
2016-08-01 15:29:53
阅读次数:
186
在开发运维的时候我们常常会遇到类似“Socket/File: Can’t open so many files”,“无法打开更多进程”,或是coredump过大等问题,这些都可以设置资源限制来解决。今天在教某位客户设置最大文件数方法时,搜索网上的方法时发现各家说法并不一致,便写了这篇文档。 通常对L ...
分类:
系统相关 时间:
2016-07-02 13:10:17
阅读次数:
442
user nginx nginx;worker_processes 1;pid /data/var/run/nginx/nginx.pid;worker_rlimit_nofile 51200; events{ #epoll是多路复用IO中的一种方式 use epoll; #单个后台的work pr ...
分类:
其他好文 时间:
2016-05-24 20:53:36
阅读次数:
154
1、vi/etc/security/limits.conf*softnofile65535*hardnofile65535*softnproc65535*hardnproc65535参照示例,正常修改(Redhat6.4)2、vi/etc/security/limits.d/90-nproc.conf*hardnproc65535*softnproc65535*hardnproc65535*softnproc65535参照示例,正常修改3、vi/etc/ssh/s..
分类:
系统相关 时间:
2016-05-16 00:29:37
阅读次数:
277
问题主要几种在nginx连接数超过限制,导致的报错。进一步分析报错原因,具体步骤如下:l查看系统最大的允许文件打开数[root@nginx01logs]#cat/proc/sys/fs/file-max3439272通过ulimit-n命令可以查看目前该linux系统里打开文件描述符的最大值[root@nginx01logs]#ulimit-n20480检..
分类:
其他好文 时间:
2016-04-01 19:02:14
阅读次数:
894
1、安装SAMBA yum -y install samba samba-client samba-common 2、修改文件打开数 vi /etc/security/limits.conf 最后添加 * soft nofile 65535 * hard nofile 65535(需重启机器) 3、
分类:
Windows程序 时间:
2016-02-22 15:21:49
阅读次数:
2812
个人总结: 如何设置普通用户的ulimit值 1、vim /etc/profile 增加 ulimit -n 10240 source /etc/profile 重新启动就不需要运行这个命令了。 2、修改/etc/security/limits.conf 增加 * hard nofile 10240
分类:
其他好文 时间:
2016-02-16 11:36:41
阅读次数:
168
nginx.conf配置如下: user nginx nginx;worker_processes 4; error_log logs/error.log error; pid logs/nginx.pid;worker_rlimit_nofile 102400; events { use epol
分类:
其他好文 时间:
2016-01-29 12:15:21
阅读次数:
136