若是有用戶test,如今須要修改此用戶打開文件數限制,步驟以下:
1 修改Linux下資源使用的配置文件,添加如下參數:vim
sudo vim /etc/security/limits.conf
test soft nproc 65534
test hard nproc 65534
test soft nofile 65534
test hard nofile 65534ide
參數說明:
nproc:用戶可用的最大進程數量
nofile:用戶可打開的最大文件總數
soft便是軟限制,hard是硬限制。用戶能夠超過soft設置的值,但必定不能超過hard 的值。通常soft比hard小
test:表明用戶,能夠用 「*」 表示,表明全部用戶命令行
2 退出當前Sehll,從新登錄,輸入下面的命令便可看見參數已經發現改變:進程
[test@localhost ~]$ ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 1821
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 65534
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 65534
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimitedip
備註:若是是root用戶能夠在命令行直接修改,而後把ulimit -SHn 65534追加到/etc/profile文件中,普通用戶在yum update升級以後,可能沒法在命令行修改,能夠直接修改配置文件。資源