Linux系统内核优化

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux系统内核优化相关的知识,希望对你有一定的参考价值。


Linux内核参数调整(用于大并发的WEB服务器)


cat > /etc/sysctl.conf < EOF
net.ipv4.tcp_syncookies = 1
fs.file-max = 999999  
net.ipv4.tcp_tw_reuse = 1  
net.ipv4.tcp_keepalive_time = 600  
net.ipv4.tcp_fin_timeout = 30  
net.ipv4.tcp_max_tw_buckets = 5000  
net.ipv4.ip_local_port_range = 1024 61000  
net.ipv4.tcp_rmem = 10240 87380 12582912  
net.ipv4.tcp_wmem = 10240 87380 12582912  
net.core.netdev_max_backlog = 8096  
net.core.rmem_default = 6291456  
net.core.wmem_default = 6291456  
net.core.rmem_max = 12582912  
net.core.wmem_max = 12582912  
net.ipv4.tcp_max_syn_backlog = 1024 
EOF



本文出自 “xwb” 博客,请务必保留此出处http://xiewb.blog.51cto.com/11091636/1792542

以上是关于Linux系统内核优化的主要内容,如果未能解决你的问题,请参考以下文章

linux操作系统网络内核优化

Linux系统内核优化

Linux系统TCP内核参数优化总结

Linux内核优化

Linux系统内核优化常用参数

Linux内核优化