[TOC]
在redis-3.2.8安裝完之后啟動(dòng)過(guò)程中可能會(huì)有警告信息。
以下是處理方法:
警告1
3493:M 31 Mar 21:52:23.684 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
- 臨時(shí)解決方案
$ sysctl -w net.core.somaxconn = 1024
- 永久解決方案
$ vim /etc/sysctl.conf
# 增加如下一行
net.core.somaxconn= 1024
# 之后使配置生效
$ sysctl -p
警告2
3493:M 31 Mar 21:52:23.684 # WARNING 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.
- 臨時(shí)解決方案
$ sysctl -w vm.overcommit_memory = 1
- 永久解決方案
$ vim /etc/sysctl.conf
# 增加如下一行
vm.overcommit_memory = 1
# 之后使配置生效
$ sysctl -p
警告3
3493:M 31 Mar 21:52:23.685 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue 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 the setting after a reboot. Redis must be restarted after THP is disabled.
- 臨時(shí)解放方案
$ echo never > /sys/kernel/mm/transparent_hugepage/enabled
- 永久解決方案
$ vim /etc/rc.local
# 最后一行增加
echo never > /sys/kernel/mm/transparent_hugepage/enabled