coder-yqj / springboot-shiro

使用SpringBoot与shiro实现基于数据库的细粒度动态权限管理系统实例
593 stars 336 forks source link

登录的密码都是啥呀! #5

Closed marph3 closed 6 years ago

marph3 commented 6 years ago

一直报错这个 redis.clients.jedis.exceptions.JedisDataException: NOAUTH Authentication required.

marph3 commented 6 years ago

登录也是报这个

coder-yqj commented 6 years ago

@qiushicai redis.clients.jedis.exceptions.JedisDataException: NOAUTH Authentication required 报这个错说明连接redis的时候没有使用密码,需要将ShiroConfig 类中的redisManager.setPassword(password); 的注释去掉。并配置密码。 登录的账号密码为:admin admin

marph3 commented 6 years ago

好的谢谢 我把redis的密码干掉了