linux釋放記憶體

531968912發表於2015-02-27
一、釋放記憶體方法
 
1. 首先使用free -m檢視剩餘記憶體
linux-8v2i:~ # free -m
total used free shared buffers cached
Mem: 3952 2773 178 0 130 1097
-/+ buffers/cache: 1545 2406
Swap: 2055 0 2055
linux-8v2i:~ # free -m
total used free shared buffers cached
Mem: 3952 2773 178 0 130 1097
-/+ buffers/cache: 1545 2406
Swap: 2055 0 2055
 
2. 執行sync命令
使用sync命令以確保檔案系統的完整性,sync 命令執行 sync 子例程,將所有未寫的系統緩衝區寫到磁碟中,包含已修改的 i-node、已延遲的塊 I/O 和讀寫對映檔案。
linux-8v2i:~ # sync
linux-8v2i:~ # sync
 
3. 修改/proc/sys/vm/drop_caches
echo 3 > /proc/sys/vm/drop_caches
 
說明:
1>. /proc是一個虛擬檔案系統,我們可以透過對它的讀寫操作作為與kernel實體間進行通訊的一種手段。也就是說可以透過修改/proc中的檔案,來對當前kernel的行為做出調整。也就是說我們可以透過調整/proc/sys/vm/drop_caches來釋放記憶體。
2>. 關於drop_caches的官方說明如下:
Writing to this file causes the kernel to drop clean caches,dentries and inodes from memory, causing that memory to becomefree.
To free pagecache, use echo 1 > /proc/sys/vm/drop_caches;
to free dentries and inodes, use echo 2 > /proc/sys/vm/drop_caches;
to free pagecache, dentries and inodes, use echo 3 >/proc/sys/vm/drop_caches.
Because this is a non-destructive operation and dirty objects are not freeable, the user should run sync first.
3>. Linux核心會將它最近訪問過的檔案頁面快取在記憶體中一段時間,這個檔案快取被稱為pagecache。
 
4.再使用free -m檢視剩餘記憶體,情況如下:
linux-8v2i:~ # free -m
total used free shared buffers cached
Mem: 3952 1773 2325 0 0 80
-/+ buffers/cache: 1545 2406
Swap: 2055 0 2055
 
二、Linux記憶體分析
1. 首先對free -m檢視結果進行分析
linux-8v2i:~ # free -m
total used free shared buffers cached
Mem: 3952 2773 178 0 130 1097
-/+ buffers/cache: 1545 2406
Swap: 2055 0 2055
 
各引數含義:
total:總實體記憶體
used:已使用記憶體
free:完全未被使用的記憶體
shared:應用程式共享記憶體
buffers:快取,主要用於目錄方面,inode值等
cached:快取,用於已開啟的檔案
-buffers/cache:應用程式使用的記憶體大小,used減去快取值
+buffers/cache:所有可供應用程式使用的記憶體大小,free加上快取值
 
其中:
total = used + free
-buffers/cache=used-buffers-cached,這個是應用程式真實使用的記憶體大小
+buffers/cache=free+buffers+cached,這個是伺服器真實還可利用的記憶體大小
 
2. Linux的記憶體分配方式
大家都知道,Linux伺服器為了提高效率,會提前申請記憶體,即使這些記憶體沒有被具體應用使用,Linux也會提前申請這些記憶體,然後利用這些記憶體做快取用,即將剛開啟的檔案系統存入cache中,這樣對應的伺服器free值會越來越少,buffers和cached會越來越大,因此給大家表象就是記憶體越來越少了,大家就緊張了;其實,大家完全不用緊張,Linux伺服器在發現記憶體不足時,會自動清理cached區域,釋放記憶體,然後繼續增大cache,free繼續減少。因此,那樣手動降低記憶體使用率的方法,其實就是圖一時之快,呵呵。
 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25462274/viewspace-1442500/,如需轉載,請註明出處,否則將追究法律責任。

相關文章