概述在linux系统使用过程中,默认的系统设置足够使用,但是对于一些高并发高性能的程序会有瓶颈存在,这些限制主要通过ulimit查看和修改 。
环境centos:CentOS release 7.0 (Final)或以上版本
ulimit查看通过命令查看当前账户的限定设置 。
ulimit -a
core file size (blocks, -c) unlimited
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) unlimited
max locked memory (kbytes, -l) unlimited
max memory size (kbytes, -m) unlimited
open files (-n) 65536
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) unlimited
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 65536
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
其中,比较常用的几个是 。
“core file size”(coredump记录文件大小,默认为0不记录) 。
“open files”(进程打开文件最大数量,默认1024,网络连接较多时会存在瓶颈) 。
“max user processes”(用户最大进程数,多进程程序修改) 。
设定ulimit资源设定的修改分硬限制和软限制,软限制无法超过硬限制的上限,硬限制设定需要修改系统配置文件 。
格式和说明都在配置文件中有清晰的描述 。
vi /etc/security/limits.conf
#Each line describes a limit for a user in the form:
#
#<domain> <type> <item> <value>
#
#Where:
#<domain> can be:
# - a user name
# - a group name, with @group syntax
# - the wildcard *, for default entry
# - the wildcard %, can be also used with %group syntax,
# for maxlogin limit
#
#<type> can have the two values:
# - "soft" for enforcing the soft limits
# - "hard" for enforcing hard limits
#
#<item> can be one of the following:
# - core - limits the core file size (KB)
# - data - max data size (KB)
# - fsize - maximum filesize (KB)
# - memlock - max locked-in-memory address space (KB)
# - nofile - max number of open file descriptors
经验总结扩展阅读
- 引擎之旅 Chapter.4 日志系统
- 电脑被锁怎么重装系统xp
- 18-基于CentOS7搭建RabbitMQ3.10.7集群镜像队列+HaProxy+Keepalived高可用架构
- 分布式存储系统之Ceph集群状态获取及ceph配置文件说明
- 电器系统什么叫做双回路控制
- 分布式存储系统之Ceph集群访问接口启用
- centos7中配置java + mysql +jdk+使用jar部署项目
- 分布式存储系统之Ceph集群部署
- 电脑启动不能进入系统
- ERP 系统的核心是什么?有什么作用?