本文主要是介绍远程启动Redis,报错不能配置键空间通知(keyspace notifications),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
启动服务器上面的redis,报错:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'enableRedisKeyspaceNotificationsInitializer' defined in class path resource [org/springframework/session/data/redis/config/annotation/web/http/RedisHttpSessionConfiguration.class]: Invocation of init method failed; nested exception is java.lang.IllegalStateException: Unable to configure Redis to keyspace notifications. See http://docs.spring.io/spring-session/docs/current/reference/html5/#api-redisoperationssessionrepository-sessiondestroyedevent
在网上找了好久的原因
1.redis.conf文件中修改 bind为0.0.0.0,
2.
1、修改reids配置文件(redis.conf)redis默认不会开启keyspace notifications,因为开启后会对cpu有消耗备注:E:keyevent事件,事件以__keyevent@<db>__为前缀进行发布;x:过期事件,当某个键过期并删除时会产生该事件;配置如下:notify-keyspace-events "Ex"
3.sentinel.conf中加入 protected-mode no
然而都不管用 ,依然报之前的错
最后在启动redis的时候用命令 redis-server ../redis.conf 即在原来的命令后面加上配置文件,然后可以了!!
- pro
- tected-mode no
这篇关于远程启动Redis,报错不能配置键空间通知(keyspace notifications)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!