文章详情
redis:ERR AUTH <password> called without any password configured for the default user解决办法
发布时间:2021-12-15
沉默小管-技术博客
redis:ERR AUTH <password> called without any password configured for the default user
2014
2
原文地址:
https://www.php-china.com//detail/75
H1
H2
H3
H4
H5
H6
# 问题描述 ERR AUTH <password> called without any password configured for the default user. Are you sure your configuration is correct 意思:redis密码错误,需要修改正确redis密码 # 解决流程 **1.找redis.conf文件** find / -name "redis.conf" 在redis配置文件中查找requirepass,并修改密码 requirepass xxxx **2.如果开启redis需要关闭,并重启** 查找redis-cli关闭redis redis-cli shutdown 开启redis redis-server redis.conf **3.密码校验** redis-cli auth xxxx(密码) ok
上一篇
下一篇
收藏
支持
标签:
最新文章
统计信息
联系站长
加入技术群
日志总数:92篇
网站运行:1486天
累计访客:13629
热门文章
1. PHP基础概念
2. redis:ERR AUTH <password> called without any password configured for the default user解决办法
3. PHP的语言结构之包含文件
4. PHP中public,private,protected的区别
5. PHP魔术方法总结
6. php如何转换json格式中的中文
7. PHP7新特性(常用)
8. PHP7上项目报错A non-numeric value encountered解决办法
9. 运行golang出现invalid memory address or nil pointer dereference错误
10. git常用命令集合