Linux open file與 fs-max
概要:
linux系統預設open files數目為1024, 有時應用程式會報Too many open files的錯誤,是因為open files 數目不夠。這就需要修改ulimit和file-max。特別是提供大量靜態檔案訪問的web伺服器,快取伺服器(如squid), 更要注意這個問題。
網上的教程,都只是簡單說明要如何設定ulimit和file-max, 但這兩者之間的關係差別,並沒有仔細說明。
說明:
1. file-max的含義。man proc,可得到file-max的描述:
/proc/sys/fs/file-max
This file defines a system-wide limit on the number of open files for all processes. (See
also setrlimit(2), which can be used by a process to set the per-process limit,
RLIMIT_NOFILE, on the number of files it may open.) If you get lots of error messages
about running out of file handles, try increasing this value:
即file-max是設定 系統所有程式一共可以開啟的檔案數量 。同時一些程式可以通過setrlimit呼叫,設定每個程式的限制。如果得到大量使用完檔案控制程式碼的錯誤資訊,是應該增加這個值。
也就是說,這項引數是系統級別的。
2. ulimit
Provides control over the resources available to the shell and to processes started by it, on systems that allow such control.
即設定當前shell以及由它啟動的程式的資源限制。
顯然,對伺服器來說,file-max, ulimit都需要設定,否則就可能出現檔案描述符用盡的問題
修改:
1.修改file-max
# echo 6553560 > /proc/sys/fs/file-max //sysctl -w "fs.file-max=34166",前面2種重啟機器後會恢復為預設值
vim /etc/sysctl.conf, 加入以下內容,重啟生效
fs.file-max = 6553560
2.修改ulimit的open file,系統預設的ulimit對檔案開啟數量的限制是1024
# ulimit -HSn 102400 //這只是在當前終端有效,退出之後,open files又變為預設值。當然也可以寫到/etc/profile中,因為每次登入終端時,都會自動執行/etc/profile
或
# vim /etc/security/limits.conf //加入以下配置,重啟即可生效
* soft nofile 65535
* hard nofile 65535
ulimit命令
-H 使用硬資源控制
-S 使用軟資源控制
-a 檢視所有的當前限制
-n 能開啟的最大檔案描述符數
-t 限制最大的 CPU 佔用時間(每秒)
-u 限制最大使用者程式數
-v 限制虛擬記憶體大小(kB)
附錄:
附錄1.
為了讓一個程式的open files數目擴大,可以在啟動指令碼前面加上ulimit -HSn 102400命令。但當程式是一個daemon時,可能這種方法無效,因為沒有終端。
附錄2.
如果某項服務已經啟動,再動態調整ulimit是無效的,特別是涉及到線上業務就更麻煩了。
這時,可以考慮通過修改/proc/’程式pid’/limits來實現動態修改!!!
註明:
檢視linux系統哪些程式開啟了file:
用lsof -p [程式ID] 可以看到某ID的開啟檔案狀況。
程式ID可能用 ps -ef|grep java列出weblogic的程式ID,然後用此ID套入lsof -p ID號,咳,一大堆的請求喲,這顯然是網路請求過多造成了 Too many open files。
適當調整後便已消除這種現象。
當前預設設定的最大檔案數 ulimit -n
系統開啟最大檔案數: cat /proc/sys/fs/file-max
統計當前某個使用者開啟的檔案數(包含socket數和會話數) lsof -u username|wc -l
統計當前所有程式的檔案開啟數 lsof |egrep -v 'TCP|UDP'|awk '{print $8}' |sort |uniq |wc -l
分析當前程式開啟檔案數的排序並此開啟檔案數最多的程式開啟了哪些檔案。
lsof |egrep -v 'TCP|UDP'|awk '{print $2}' |sort -n |uniq -c |sort -nr |head -n1
假如結果為 125 1150,第一個數字是個數,第二個數字是pid
lsof -p 1150
檢視當前的開啟最大數檔案數的設定引數:cat /etc/security/limits.conf
檢視當前執行緒總數
echo "`ps -eLf |awk '{print $6}'|grep -v NLWP |xargs |sed 's/ /+/g'`" |bc
檢視當前程式數:
ps aux |grep -v 'USER'|wc -l
統計SOCKE聯接數:
netstat |awk '$1=="unix"'|wc -l
當然我們可以利用指令碼動態統計某個程式的檔案開啟數
sh-4.1# more test.sh
#/bin/sh
while :; do
sleep 1800
lsof -p 29728 |wc -l
done
上面建立了一個test.sh指令碼,每1800秒(半個鍾)統計29728程式的檔案開啟數,while :; 的意思是死迴圈
然後將test.sh放到後臺執行,執行的資訊放在openfiles.txt這個檔案中
sh-4.1# nohup ./test.sh > openfiles.txt 2>&1 &
sh-4.1# more test.sh
#/bin/sh
while :; do
sleep 1800
lsof -p 29728 |wc -l
done
相關文章
- WPF open image and print as pdf file
- open_basedir() restrictijon in effect. FIle()REST
- ftp 報錯 550 Failed to open fileFTPAI
- apr_file_open函式用法心得函式
- libmysqlclient.so.16: cannot open shared object file: No such file or directoryIBMMySqlclientObject
- libcap.so.1:cannot open shared object file: No such file or directoryObject
- libXext.so.6: cannot open shared object file: No such file or directoryObject
- libz.so.1: cannot open shared object file: No such file or directoryObject
- ImportError: libffi.so.7: cannot open shared object file: No such file or directoryImportErrorObject
- ORA-31617 unable to open dump file for write
- CVE-2017-7494 Linux Samba named pipe file Open Vul Lead to DLL ExecutionLinuxSamba
- linux操作提示:“Can't open file for writing”或“operation not permitted”的解決辦法LinuxMIT
- 記錄 libldap-2.4.so.2: cannot open shared object file: No such file or directoryLDAObject
- 問題1.libXp.so.6: cannot open shared object file: No such file or directoryObject
- RMAN can not open in LinuxLinux
- 呼叫torchtext報錯OSError: libtorch_cpu.so: cannot open shared object file: No such file or directoryErrorObject
- shared libraries: libpthread.so.0: cannot open shared object file: No such file or directorythreadObject
- linux_ulimit_open filerLinuxMIT
- libiconv.so.2: cannot open shared object file: No such filObject
- ORA-31640: unable to open dump file 問題解決
- Failed to load libGL.so error libGL.so: cannot open shared object file: No such file or directoryAIErrorObject
- 【Open-Falcon】Linux下安裝Open-FalconLinux
- inplace-abn 報錯解決: ImportError: libcudart.so.9.0: cannot open shared object file: No such file or dirImportErrorDartObject
- open the oracle 10g on linuxOracle 10gLinux
- nginx: [error] open() “/var/run/nginx/nginx.pid“ failed (2: No such file or directory)NginxErrorAI
- python libclntsh.so.12.1: cannot open shared object filePythonObject
- libcudart.so.8.0: cannot open shared object file解決方案DartObject
- Linux中open與fopen區別主要體現在哪些方面?Linux
- Nginx安裝啟動過程報錯libpcre.so.1 cannot open shared object file: No such file or directoryNginxObject
- error while loading shared libraries: libodm9.so: cannot open shared object file: No such file or diErrorWhileObject
- while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or dirWhilethreadObject
- 解決ImportError: libmysqlclient_r.so.16: cannot open shared object fileImportErrorIBMMySqlclientObject
- File與IO基礎
- Java - 異常與FileJava
- linux解決xhost: unable to open displayLinux
- linux解決xhost unable to open display‘’Linux
- Linux錯誤:xhost unable to open displayLinux
- [Open Source] RabbitMQ 安裝與使用MQ