欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LINUX 中不能用命令了…………

程序员文章站 2022-07-14 20:58:29
...
bash:   ulimit:   cannot   modify   limit:   Operation   not   permitted

出现如上错误,解决方法如下:

Linux137:~ # cat >>/etc/security/limits.conf<<EOF
>
> etl soft nproc 2047
> etl hard nproc 16384
> etl soft nofile 1024
> etl hard nofile 65536
> EOF
Linux137:~ # cat >> /etc/pam.d/login <<EOF
> session required /lib/security/pam_limits.so
> EOF


成功
相关标签: ulimit limit