linux系统domino控制台报“WARNING: The maximun number of file handles (ulimit -n) allowed for Domino ”的解决办法

来源:互联网 发布:winzip mac 5 注册码 编辑:程序博客网 时间:2024/06/07 02:24


linux系统domino控制台报“WARNING: The maximun  number of file handles (ulimit -n) allowed for Domino is 1024.”的解决办法,在/etc/security/limits.conf文件中增加以下内容:
32位增加内容为:
notes   soft    nofile  20000
notes   hard    nofile  49152
 
64位增加内容为:
notes   soft    nofile  60000
notes   hard    nofile  80000

停掉domino进行修改保存,启动domino后就没报上面的问题。


另外:
soft nproc: 可打开的文件描述符的最大数(软限制)

hard nproc: 可打开的文件描述符的最大数(硬限制)

soft nofile:单个用户可用的最大进程数量(软限制)

hard nofile:单个用户可用的最大进程数量(硬限制)



0 0
原创粉丝点击