redis常见错误

Posted bhz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis常见错误相关的知识,希望对你有一定的参考价值。

  1. ResponseError: OOM command not allowed when used memory > ‘maxmemory‘.
    redis内存不足,需要修改配置 redis.conf, 修改其中的配置项:
    maxmemory
    maxmemory-policy

  2. Could not connect to Redis at 127.0.0.1:6379: Connection refused
    尝试连接redis时,客户端打不开,原因是需要先开启服务端,这需要先配置
    1)找到redis.conf 并修改 daemonize no 为 daemonize yes ,这样就可以默认启动就后台运行
    2)开启客户端要确保服务端启动
    redis-server /etc/redis.conf
    3)启动客户端不成功要退出再进行下一步
    redis-server /etc/redis.conf
    redis-cli
    redis 127.0.0.1:6379>












以上是关于redis常见错误的主要内容,如果未能解决你的问题,请参考以下文章

redis安装常见错误

Redis(1.12)Redis cluster搭建常见错误

Redis在Linux环境下安装的常见错误

在阿里云服务器上安装redis流程及常见错误

linux下常见错误记录

redis安装常见问题