linux 打開文件數(shù) too many open files 解決方法
too many open files出現(xiàn)這句提示的原因是程序打開的文件/socket連接數(shù)量超過系統(tǒng)設(shè)定值。
查看每個用戶最大允許打開文件數(shù)量
ulimit -a
fdipzone@ubuntu:~$ ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 20
file size (blocks, -f) unlimited
pending signals (-i) 16382
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 1024
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) unlimited
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
其中 open files (-n) 1024 表示每個用戶最大允許打開的文件數(shù)量是1024
查看當(dāng)前系統(tǒng)打開的文件數(shù)量
lsof | wc -l
watch "lsof | wc -l"
查看某一進(jìn)程的打開文件數(shù)量
lsof -p pid | wc -l
lsof -p 1234 | wc -l
設(shè)置open files數(shù)值方法
ulimit -n 2048
fdipzone@ubuntu:~$ ulimit -n 2048
fdipzone@ubuntu:~$ ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 20
file size (blocks, -f) unlimited
pending signals (-i) 16382
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 2048
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) unlimited
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
這樣就可以把當(dāng)前用戶的最大允許打開文件數(shù)量設(shè)置為2048了,但這種設(shè)置方法在重啟后會還原為默認(rèn)值。
永久設(shè)置方法
vim /etc/security/limits.conf
在最后加入
* soft nofile 4096
* hard nofile 4096
最前的 * 表示所有用戶,可根據(jù)需要設(shè)置某一用戶,例如
fdipzone soft nofile 8192
fdipzone hard nofile 8192
改完后注銷一下就能生效。
linux Argument list too long錯誤解決方法
上一次需要刪除/tmp目錄下的所有文件,文件數(shù)量比較多。
ls -lt /tmp | wc -l
385412
使用 rm * 后,系統(tǒng)提示錯誤 Argument list too long
原因是在linux下,試圖傳太多參數(shù)給一個系統(tǒng)命令(ls *; cp *; rm *; cat *; etc..)時,就會出現(xiàn) Argument list too long錯誤。
解決方法如下:
使用find -exec 遍歷,然后執(zhí)行刪除便可。
sudo find /tmp -type f -exec rm {} \;