您的位置:首页 > 数据库 > Redis

redis运行后的一些警告

2013-12-14 00:00 120 查看
我更改了redis的conf,运行,出现了警告:

Warning: no config file specified, using the default config.
In order to specify a config file use 'redis-server /path/to/redis.conf'

警告:没有明确的config文件,使用默认配置。为了明确配置文件请使用'redis-server /path/to/redis.conf'

我琢磨了半天(我比较愚钝),后来明白了,需要用显示命令方式指定redis的conf运行:

#./redis-server /usr/local/src/redis-2.0.4/redis.conf

[c-sharp] view plain copy

./redis-server /usr/local/src/redis-2.0.4/redis.conf

这样运行后,上个警告消失。

但是还有一个警告:

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.

警告:过量使用内存设置为0!在低内存环境下,后台保存可能失败。为了修正这个问题,请在/etc/sysctl.conf 添加一项 'vm.overcommit_memory = 1' ,然后重启(或者运行命令'sysctl vm.overcommit_memory=1' )使其生效。

按这个提示来做,警告排除。

后续有很多开发填坑的文章发布,如果对你有帮助,请支持和加关注一下

http://e22a.com/h.05ApkG?cv=AAKHZXVo&sm=339944

https://shop119727980.taobao.com/?spm=0.0.0.0
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: