Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> ulimit -SHn 65535 含義

ulimit -SHn 65535 含義

日期:2017/2/7 14:33:11      編輯:Linux教程
 

linux下用ulimit設置連接數最大值,默認是1024.
在高負載下要設置為更高,但最高只能為65535.

ulimit只能做臨時修改,重啟後失效。
可以加入
ulimit -SHn 65535
/etc/rc.local 每次啟動啟用。

 

終極解除 Linux 系統的最大進程數和最大文件打開數限制:
vim /etc/security/limits.conf
# 添加如下的行
* soft nproc 11000
* hard nproc 11000
* soft nofile 655350
* hard nofile 655350

Copyright © Windows教程網 All Rights Reserved