我是靠谱客的博主 高兴母鸡,最近开发中收集的这篇文章主要介绍Caused by: org.redisson.client.RedisException: ERR Client sent AUTH, but no password is set. channel,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

package com.qfedu.fmmall.service.config;/*
 **
 *@author SmallMonkey
 *@Date 2022/12/23 12:51
 *
 *
 **/

import org.redisson.Redisson;
import org.redisson.api.RedissonClient;
import org.redisson.config.Config;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class RedissonConfig {
//    @Value("${redisson.addr.singleAddr.host}")
    @Value("${spring.redis.host}")
    private String host;
    @Value("${redisson.addr.singleAddr.password}")
//    @Value("${spring.redis.password}")
    private String password;
    @Value("${redisson.addr.singleAddr.port}")
//    @Value("${spring.redis.port}")
    private int port;

    @Value("${redisson.addr.singleAddr.database}")
//    @Value("${spring.redis.database}")
    private int database;

    @Bean
    public RedissonClient redissonClient(){
        Config config = new Config();
        config.useSingleServer()
                .setAddress("redis://" + host + ":" + port)
                .setPassword(password)
                .setDatabase(database);
        return Redisson.create(config);
    }



}

由于你是没有密码的,直接把 .setPassword(password)方法去掉

最后

以上就是高兴母鸡为你收集整理的Caused by: org.redisson.client.RedisException: ERR Client sent AUTH, but no password is set. channel的全部内容,希望文章能够帮你解决Caused by: org.redisson.client.RedisException: ERR Client sent AUTH, but no password is set. channel所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部