[root@localhost ~]# ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 16384
max locked memory (kbytes, -l) 32
max memory size (kbytes, -m) unlimited
open files (-n) 65535 ----------》最大连接数
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 10240
cpu time (seconds, -t) unlimited
max user processes (-u) unlimited
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
[root@localhost ~]# ulimit -n
65535
系统初始化时候,这个数值只有1024,如何修改?
[root@localhost ~]# vim /etc/security/limits.conf
在最后面修改
# End of file
* - nofile 65535 ----------可打开的文件描述符的最大数
*号表示所有用户
#* - nproc 65535
* - nproc unlimited ------------单个用户可用的最大进程数量
也有人这样写
* soft nofile 65535
* hard nofile 65535
其实
* - nofile 65535
是
* soft nofile 65535
* hard nofile 65535
的简写;
* - nproc unlimited ------------最大进程连接数,无限制。
这样设置好后,在开个客户端就可以查看到你的设置了。
本文出自 “秋风颂” 博客,请务必保留此出处http://qiufengsong.blog.51cto.com/7520243/1386082
如何设置系统的最大连接数ulimit -a,布布扣,bubuko.com
原文:http://qiufengsong.blog.51cto.com/7520243/1386082