博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
redis启动警告处理
阅读量:5924 次
发布时间:2019-06-19

本文共 668 字,大约阅读时间需要 2 分钟。

hot3.png

1 overcommit_memory参数为 0

在低内存的时候会无法fork进程,导致数据保存失败

处理:

在/etc/sysctl.conf中添加vm.overcommit_memory = 1,然后重启机器,或者sysctl vm.overcommit_memory=1,本次有效

2 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.

3 /proc/sys/net/core/somaxconn is set to the lower value of 128

在/etc/sysctl.conf中添加net.core.somaxconn = 8196(可以更大)

转载于:https://my.oschina.net/joeytai/blog/515085

你可能感兴趣的文章
cxLookupComboBox使用方法
查看>>
C# 之泛型详解
查看>>
POJ1017 Packets(贪心)
查看>>
第一次随笔
查看>>
我的操作系统复习——存储器管理
查看>>
Java二十三设计模式之------责任链模式
查看>>
IDEA之配置git
查看>>
HTML5网页音乐播放器
查看>>
行列式的乘法定理
查看>>
【云图】如何制作中国贪官落马图?
查看>>
Anaconda配置多spyder多python环境
查看>>
对于一些概念的澄清
查看>>
线段树(区间合并) POJ 3667 Hotel
查看>>
Linux 小知识翻译 - 「虚拟化技术」
查看>>
CodeChef November Challenge 2013 解题报告
查看>>
uva 10369(最小生成树)
查看>>
grep命令
查看>>
js中this的使用
查看>>
privot和unpivot
查看>>
硬件笔记
查看>>