zoukankan      html  css  js  c++  java
  • 内核参数优化

    内核参数优化
    # 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

  • 相关阅读:
    JSP 隐含对象
    Cookie 和 Session
    Servlet(Server Applet) 详解
    AbstractQueuedSynchronizer 详解
    ThreadLocal 详解
    线程的生命周期
    phpfor函数和foreach函数
    php的while函数
    php的switch函数
    php的if函数
  • 原文地址:https://www.cnblogs.com/chenjw-note/p/6291802.html
Copyright © 2011-2022 走看看