码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • Ceph入门到精通-sysctl.conf 配置


    sysctl.conf

    Ubuntu server out of box is not optimized to make full use of available hardware. This means “out-of-box” setup might fail under high load.

    So we need to tweak system configuration for maximum concurrancy.

    Sysctl Tweaks

    Open

    vim /etc/sysctl.conf

    Add following towards bottom

    ### IMPROVE SYSTEM MEMORY MANAGEMENT ###
    
    # Increase size of file handles and inode cache
    fs.file-max = 2097152
    
    # Do less swapping
    vm.swappiness = 10
    vm.dirty_ratio = 60
    vm.dirty_background_ratio = 2
    
    ### GENERAL NETWORK SECURITY OPTIONS ###
    
    # Number of times SYNACKs for passive TCP connection.
    net.ipv4.tcp_synack_retries = 2
    
    # Allowed local port range
    net.ipv4.ip_local_port_range = 2000 65535
    
    # Protect Against TCP Time-Wait
    net.ipv4.tcp_rfc1337 = 1
    
    # Decrease the time default value for tcp_fin_timeout connection
    net.ipv4.tcp_fin_timeout = 15
    
    # Decrease the time default value for connections to keep alive
    net.ipv4.tcp_keepalive_time = 300
    net.ipv4.tcp_keepalive_probes = 5
    net.ipv4.tcp_keepalive_intvl = 15
    
    ### TUNING NETWORK PERFORMANCE ###
    
    # Default Socket Receive Buffer
    net.core.rmem_default = 31457280
    
    # Maximum Socket Receive Buffer
    net.core.rmem_max = 12582912
    
    # Default Socket Send Buffer
    net.core.wmem_default = 31457280
    
    # Maximum Socket Send Buffer
    net.core.wmem_max = 12582912
    
    # Increase number of incoming connections
    net.core.somaxconn = 4096
    
    # Increase number of incoming connections backlog
    net.core.netdev_max_backlog = 65536
    
    # Increase the maximum amount of option memory buffers
    net.core.optmem_max = 25165824
    
    # Increase the maximum total buffer-space allocatable
    # This is measured in units of pages (4096 bytes)
    net.ipv4.tcp_mem = 65536 131072 262144
    net.ipv4.udp_mem = 65536 131072 262144
    
    # Increase the read-buffer space allocatable
    net.ipv4.tcp_rmem = 8192 87380 16777216
    net.ipv4.udp_rmem_min = 16384
    
    # Increase the write-buffer-space allocatable
    net.ipv4.tcp_wmem = 8192 65536 16777216
    net.ipv4.udp_wmem_min = 16384
    
    # Increase the tcp-time-wait buckets pool size to prevent simple DOS attacks
    net.ipv4.tcp_max_tw_buckets = 1440000
    net.ipv4.tcp_tw_recycle = 1
    net.ipv4.tcp_tw_reuse = 1

    Load Changes

    Run following command to load changes to sysctl.

    sysctl -p

    Useful Systcl Commands

    This section is added to main post after Ovidiu’s comment.

    Show all system parameters with their values (default or changed)

    sysctl -A

    Show values of parameters modified by you

    sysctl -p

    Show value for a single parameter  parameter-name

    sysctl parameter-name

    Change value for  a single parameter parameter-name without editing sysctl.conf manually.

    sysctl -w parameter-name=parameter-value

    Above command will overwrite any previous modifications to parameter-name. Also, you may need to surround parameter-value with quotes.

    Related

    I do not have in-depth explanation for all parameters. Comments will guide you somewhat.

    You can check Increase "Open Files Limit". Solution for "Too many open files (24)" for more details about fs.file-max

    Credits

  • 相关阅读:
    车载网络测试 - UDS诊断篇 - CANTP常用缩写
    [C++](20)红黑树,调整规则图解,插入功能代码实现
    【秋招必备】JVM性能调优面试题(2022最新版)
    物联网、工业大数据平台 TDengine 与苍穹地理信息平台完成兼容互认证
    Postman之Newman命令行运行脚本生成HTML报告
    Java11-Object类,常用API
    Vue常见面试题,如何修改滚动条样式(谷歌浏览器)
    服务器配置宝塔(Linux 服务器运维管理软件)
    一种隐私保护边云协同训练
    R语言使用MASS包的polr函数构建有序多分类logistic回归模型、使用VGAM包的vglm函数对有序多分类logistic回归模型进行平行性假设作检验
  • 原文地址:https://blog.csdn.net/wxb880114/article/details/133342687
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号