全部
我想将核心文件大小永久设置为无限制。阅读它,建议是修改 /etc/security/limits.conf。我已经通过以下行做到了:
- 软核10000根硬核10000
更改后我重新启动并发出 ulimit -a 并且核心仍然设置为 0。无法理解为什么设置不起作用。什么可以覆盖它?
试试这个:
* soft nofile 10000
* hard nofile 10000
并将这一行添加到.profile
文件中,fe for root
in/root/.profile
ulimit -c 10000
或适用于/etc/profile
.
记住:对于远程用户:/etc/pam.d/sshd
对于 su/etc/pam.d/su
session required /lib/security/pam_limits.so
使用这个命令
ulimit -SHn 65535
如果你在做 docker-compose up 并且有问题
启动 Apache httpd web server: apache2/usr/sbin/apache2ctl: 99: ulimit: error setting limit (Operation not allowed)
请以 sudo service docker restart 重新启动您的 docker 服务