修改ubuntu的打开文件数上限

为什么80%的码农都做不了架构师?>>>   hot3.png

因为linux的默认最大的打开文件数为1024,我们可以通过ulimit -c -n查看软限制为1024,通过ulimit -c -n -H查看硬限制为4096.

修改的方法如下:

/etc/security/limits.conf

* soft nofile 40960 
* hard nofile 40960



vi /etc/pam.d/common-session

session required pam_limits.so



vi /etc/profile

ulimit -SHn 40960


转载于:https://my.oschina.net/bobwei/blog/480943

你可能感兴趣的:(修改ubuntu的打开文件数上限)