Dcoke docker-redis 启动警告处理

Dcoke docker-redis 启动警告处理如果启动前不对Linux内核做任何更改,那么Redis启动会报出警告,共三个:如下图所示 第一个警告:The TCP backlog setting of 511 cannot be enforce…

如果启动前不对Linux内核做任何更改,那么Redis启动会报出警告,共三个:如下图所示

Dcoke docker-redis 启动警告处理

 

第一个警告:The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.

意思是:TCP  backlog设置值,511没有成功,因为 /proc/sys/net/core/somaxconn这个设置的是更小的128.

临时解决方法:(即下次启动还需要修改此值)

echo 511 > /proc/sys/net/core/somaxconn

永久解决方法:(即以后启动还需要修改此值)

将其写入/etc/rc.local文件中。

baklog参数实际控制的是已经3次握手成功的还在accept queue的大小。

参考linux里的backlog详解

 

第二个警告:overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add “vm.overcommit_memory = 1” to/etc/sysctl.conf andthen reboot or run the command “sysctl vm.overcommit_memory=1” for this to take effect.

意思是:overcommit_memory参数设置为0!在内存不足的情况下,后台程序save可能失败。建议在文件 /etc/sysctl.conf 中将overcommit_memory修改为1。

临时解决方法:echo “vm.overcommit_memory=1” > /etc/sysctl.conf

永久解决方法:将其写入/etc/sysctl.conf文件中。

参考:有关linux下redis overcommit_memory的问题

 

第三个警告:you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix thisissue run the command “echo never > /sys/kernel/mm/transparent_hugepage/enabled” as root, and add it to your /etc/rc.local in order to retain thesetting after a reboot. Redis must be restarted after THP is disabled.

意思是:你使用的是透明大页,可能导致redis延迟和内存使用问题。执行 echo never > /sys/kernel/mm/transparent_hugepage/enabled 修复该问题。

临时解决方法:

echo never > /sys/kernel/mm/transparent_hugepage/enabled。

永久解决方法:

将其写入/etc/rc.local文件中。

 

如果第一个警告不能再宿主机中解决,可以在docker容器中尝试解决,可以参考此文章。

http://weeklyalgo.codes/2017/03/06/some%20docker%20security%20options/#2-

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/10562.html

(0)
上一篇 2022-12-25
下一篇 2022-12-25

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注