redis-server的三个警告

就这三个警告:

第一个警告:The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
第二个警告: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 and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
第三个警告: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一般都是部署在服务器上作为服务存在的。所以,本文的解决方案都是持久性配置,不是临时配置。
第一个警告,第二个警告:
将net.core.somaxconn = 1024 和 vm.overcommit_memory = 1 添加到 /etc/sysctl.conf 中,然后执行sysctl -p生效配置。

[root@localhost ~]# vi /etc/sysctl.conf

如图,注意前面没有#号!
redis-server的三个警告
保存退出,再执行

[root@localhost ~]# sysctl -p

第三个警告
将echo never > /sys/kernel/mm/transparent_hugepage/enabled 添加到 /etc/rc.local 中,然后执行source /etc/rc.local 生效配置。

[root@localhost ~]# vi /etc/rc.local

注意前面没有#号
redis-server的三个警告
保存退出,再执行

[root@localhost ~]# source /etc/rc.local

好了,这时候再去执行 redis-server 就不会有警告提示了。

上一篇:linux内核参数sysctl.conf,TCP握手ack,洪水攻击syn,超时关闭wait;


下一篇:linux – 更改sysctl是否需要重启进程?