在Linux系统中,ulimit是一个强大的工具,用于控制用户进程可以使用的资源。然而,有时候我们可能会遇到需要关闭或者调整这些资源限制的情况,以满足特定需求。本文将介绍如何关闭Linux系统中的ulimit限制,使得进程能够更自由地利用系统资源。
查看配置
ulimit -a
输出
real-time non-blocking time (microseconds, -R) unlimited
core file size (blocks, -c) unlimited
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 30446
max locked memory (kbytes, -l) unlimited
max memory size (kbytes, -m) unlimited
open files (-n) 65535
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 10240
cpu time (seconds, -t) unlimited
max user processes (-u) 65535
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
临时配置
ulimit -nu 65535
ulimit -nu 65535
可以将该命令写入到~/.bashrc
来达到永久修改的目的,但一般不建议。
注意看/etc/security/limits.conf
中的文档(下面摘录关键部分),*
无法匹配root
用户,所以root
与*
需要同时修改。
-NOTE:group and wildcard Limits are not applied to root.
To apply a limit to the root user, <domain> must be the literal username root.
修改完成注意重启生效。
echo '
root soft nofile 65535
root hard nofile 65535
root soft nproc 65535
root soft nproc 65535
* soft nofile 65535
* hard nofile 65535
* soft nproc 65535
* soft nproc 65535
' >> /etc/security/limits.conf