Windows版本Redis 在redis.properties中密码的设置
2021-06-23 11:03
标签:版本 active host xid 配置文件 wait 报错 解决方案 启动 Windows版本Redis的Redis默认是没有密码的. Windows版本Redis 在redis.properties中密码的设置 标签:版本 active host xid 配置文件 wait 报错 解决方案 启动 原文地址:https://www.cnblogs.com/jaythc/p/10199863.html
在代码中连接Redis使用的是redis.properties配置文件.
如果注释掉redis.password这一行,那么项目启动的时候就会报错.
解决方案是留下这一行,但是不赋值即可.
示例如下redis.host=192.168.56.32
redis.port=6379
redis.password=
redis.maxIdle=100
redis.maxActive=500
redis.maxWait=10000
redis.testOnBorrow=true
文章标题:Windows版本Redis 在redis.properties中密码的设置
文章链接:http://soscw.com/index.php/essay/97762.html