内核参数优化

Posted chenjianwen

tags:

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

内核参数优化
# vi sysctl.conf
增加以下配置
net.ipv4.netfilter.ip_conntrack_tcp_timeout_established = 1800
net.ipv4.ip_conntrack_max = 16777216 # 如果使用默认参数,容易出现网络丢包

net.ipv4.netfilter.ip_conntrack_max = 16777216 # 如果使用默认参数,容易出现网络丢包

net.ipv4.tcp_max_syn_backlog = 65536

net.core.netdev_max_backlog = 32768

net.core.somaxconn = 32768
net.core.wmem_default = 8388608
net.core.rmem_default = 8388608
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.ipv4.tcp_timestamps = 0
net.ipv4.tcp_synack_retries = 2
net.ipv4.tcp_syn_retries =
net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_mem = 94500000 915000000 927000000
net.ipv4.tcp_max_orphans = 3276800
net.ipv4.ip_local_port_range = 1024 65535

配置生效:

sysctl -p

修改iptables启动脚本,在star()函数里面加上

vim /etc/init.d/iptables

/sbin/sysctl -p

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

一般优化linux的内核,需要优化啥参数

linux内核参数注释与优化

linux内核参数注释与优化

linux内核参数注释与优化

linux内核参数注释与优化

linux 内核参数优化