解决问题:Unable to connect to Redis

错因:无法连接到redis

最近在使用springboot整合redis时,出现的错误:

Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379

解决:需要到springboot配置文件中配置一些相关参数去连接Redis

spring:
  redis:
    host: 192.168.1.1   #服务器地址 你服务器或本机地址
    port: 6379           #连接端口
    database: 0          #数据库索引,默认0
    password: 123456     #密码
    jedis:
      pool:
        max-active: 8    #连接池最大连接数(使用负值表示没有限制)
        max-wait: -1     #最大阻塞等待时间(使用负值表示没有限制)
        max-idle: 8      #最大空闲连接数
        min-idle: 0      #最小空闲连接数
    timeout: 5000        #连接超时时间(毫秒)

解决问题:Unable to connect to Redis_第1张图片

配置完这些参数即可使用

你可能感兴趣的:(异常,Java,java,数据库,开发语言)