sudo: ulimit: command not found

临时修改某用户(非root)的最大打开文件数

sudo sh -c "ulimit -n 65535 && exec su $LOGNAME"

永久修改

编辑 sudo vim /etc/security/limits.conf 文件

*   soft    nofile   1020000
*   hard  nofile 102000

用户名为 * 的时候表示所有的用户

你可能感兴趣的:(linux,centos)