我需要增加系统中打开文件的限制大小,
我对以下文件进行了更改,
file:-/etc/security/limits.conf
变化:-
* soft nproc 990000
* hard nproc 990000
* soft nofile 990000
* hard nofile 990000
root soft nproc 990000
root hard nproc 990000
root soft nofile 990000
root hard nofile 990000
ubuntu soft nproc 990000
ubuntu hard nproc 990000
ubuntu soft nofile 990000
ubuntu hard nofile 990000
文件:-/etc/pam.d/common-session
改变:-session required pam_limits.so
文件:-/etc/sysctl.conf
改变:-
fs.file-max = 2097152
vm.swappiness=1
文件:-/etc/systemd/system.conf
更改:-DefaultLimitNOFILE=999990
然后我使用命令应用了更改sudo sysctl -p
,但它显示打开的文件大小为 1024,
打开文件限制没有改变,
请帮助我,增加文件限制大小。
操作系统:Ubuntu 22.04.1 LTS
我想将文件限制大小增加到 990000。