linux sysctl参数配置详细介绍

 更新时间:2017年02月28日 09:29:31   作者:lean1252  
这篇文章主要介绍了linux sysctl参数配置详细介绍的相关资料,需要的朋友可以参考下

linux sysctl参数配置

步骤及实现:

sudo vi /etc/sysctl.conf

代码:

# Kernel sysctl configuration file for Red Hat Linux
#
# For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and
# sysctl.conf(5) for more details.




# Controls the System Request debugging functionality of the kernel
kernel.sysrq = 1

# Controls whether core dumps will append the PID to the core filename
# Useful for debugging multi-threaded applications
kernel.core_uses_pid = 1


# Controls the maximum size of a message, in bytes
kernel.msgmnb = 65536

# Controls the default maxmimum size of a mesage queue
kernel.msgmax = 65536

# Controls the maximum shared segment size, in bytes
kernel.shmmax = 68719476736

# Controls the maximum number of shared memory segments, in pages
kernel.shmall = 4294967296


# Controls IP packet forwarding
net.ipv4.ip_forward = 0
# Controls source route verification
net.ipv4.conf.default.rp_filter = 1
# Do not accept source routing
net.ipv4.conf.default.accept_source_route = 0

# Controls the use of TCP syncookies
net.ipv4.tcp_syncookies = 1
net.core.somaxconn = 10240
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_fin_timeout = 30
net.ipv4.tcp_keepalive_time = 300
net.ipv4.tcp_synack_retries = 3
net.ipv4.tcp_syn_retries = 3
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.ipv4.tcp_rmem = 4096 87380 16777216
net.ipv4.tcp_wmem = 4096 65536 16777216
net.ipv4.tcp_no_metrics_save = 0
net.core.netdev_max_backlog = 2500
net.ipv4.tcp_max_syn_backlog = 4196
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
                  
xen.independent_wallclock = 1

重启,使修改生效

sudo sysctl -p 

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

相关文章

  • linux查看用过的命令方法总结

    linux查看用过的命令方法总结

    在本篇文章里小编给大家分享了关于linux怎么查看用过的命令的具体方法和步骤,需要的朋友们参考下。
    2019-06-06
  • Linux更改账户密码实例详解

    Linux更改账户密码实例详解

    在本篇文章中我们给大家分享了关于Linux更改账户密码实例内容,有兴趣的朋友们学习下。
    2019-02-02
  • Apache No space left on device: mod_rewrite: could not create rewrite_log_lock Configuration Failed

    Apache No space left on device: mod_rewrite: could not creat

    这篇文章主要介绍了Apache No space left on device: mod_rewrite: could not create rewrite_log_lock Configuration Failed问题的解决方法,需要的朋友可以参考下
    2014-09-09
  • Linux下如何检查网卡bonding状态和切换主备网卡

    Linux下如何检查网卡bonding状态和切换主备网卡

    这篇文章主要介绍了Linux下如何检查网卡bonding状态和切换主备网卡问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2023-11-11
  • Apache简介及安全配置方案

    Apache简介及安全配置方案

    Apache HTTP Server(简称Apache)是Apache软件基金会的一个开放源码的网页服务器,可以在大多数计算机操作系统中运行,由于其多平台和安全性被广泛使用,是最流行的Web服务器端软件之一。它快速、可靠并且可通过简单的API扩展,将Perl/Python等解释器编译到服务器中。
    2014-08-08
  • centos 6.3 最小安装系统下快速搭建环境步骤分享

    centos 6.3 最小安装系统下快速搭建环境步骤分享

    这篇文章主要介绍了centos6.3 最小安装系统下快速搭建环境,
    2013-04-04
  • linux nc命令小结

    linux nc命令小结

    这篇文章主要介绍了linux nc命令小结,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2019-01-01
  • shell判断一个变量是否为空方法总结

    shell判断一个变量是否为空方法总结

    在本篇文章里小编给大家分享了关于shell判断一个变量是否为空方法总结内容,有兴趣的朋友们学习下。
    2019-01-01
  • Linux动静态库的制作与使用

    Linux动静态库的制作与使用

    这篇文章主要介绍了Linux动静态库的制作与使用,文中通过代码示例和图文结合的方式给大家介绍的非常详细,对大家的学习或共组哦有一定的帮助,需要的朋友可以参考下
    2024-05-05
  • Linux中查看指定文件夹内各个子文件夹内的文件数量

    Linux中查看指定文件夹内各个子文件夹内的文件数量

    今天小编就为大家分享一篇关于Linux中查看指定文件夹内各个子文件夹内的文件数量,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
    2019-01-01

最新评论