-- Sunucu

Linux üzerinde ram i boşaltmak

Linux ‘ta bir süre sonra ramde şişmeler yaşanabilir bunun çözümü için aşağıdaki bash scripti çalıştırabilirsiniz.

sync;

# free page cache
echo 1 > /proc/sys/vm/drop_caches;

# free dentries and inodes
echo 2 > /proc/sys/vm/drop_caches

# free page cache, dentries and inodes
echo 3 > /proc/sys/vm/drop_caches

Yorumla

Yorum

Bu site, istenmeyenleri azaltmak için Akismet kullanıyor. Yorum verilerinizin nasıl işlendiği hakkında daha fazla bilgi edinin.