有时候进程数太小会导致卡死服务状态 而使用ulimit -u增加的线程不是永久添加的 这时候需要改配置文件使其永久添加。
1,切换root权限
2,vim /etc/security/limits.conf
# End of file
#root soft nofile 65535
#root hard nofile 65535
#* soft nofile 65535
#* hard nofile 65535
* soft noproc 127093
* hard noproc 127093
* soft nofile 127093
* hard nofile 127093
注释掉本来的配置 直接加新的就行 。
3,vim /etc/security/limits.d/20-nproc.conf
#* soft nproc 4096
#root soft nproc unlimited
* soft nproc 127098
* hard nproc 204800
还是注掉原本存在的 直接加,然后重启 就会发现root和普通用户都是127098(自己设置)的线程。
最大文件数同理 nofile代表最大文件数