Аутентификация NOAUTH требуется Spring-Boot-Data-Redis+Sealrease Latuce+Redis sentinelJAVA

Программисты JAVA общаются здесь
Anonymous
Аутентификация NOAUTH требуется Spring-Boot-Data-Redis+Sealrease Latuce+Redis sentinel

Сообщение Anonymous »

Когда я перезагружаю Redis cause

Java.util.concurrent.executionException: io.lettuce.core.rediscommandexecutionException: NOAUTH Authentication требуется.
Почему эта проблема
Используйте версию, подобную этой < /p>

Почему эта проблема
используйте версию < /p>
@Configuration
public class RedisConfig {

@Autowired
private RedisProperties redisProperties;

@Bean(destroyMethod = "close")
public StatefulRedisConnection StatefulRedisConnection() {
RedisURI redisUri = RedisURI.builder().withPassword(redisProperties.getPassword())
.withSentinel(redisProperties.getSentinel().getNodes().get(0).split(":")[0],
Integer.valueOf(redisProperties.getSentinel().getNodes().get(0).split(":")[1]))
.withSentinelMasterId(redisProperties.getSentinel().getMaster())
.withDatabase(redisProperties.getDatabase()).build();
RedisClient redisClient = RedisClient.create(redisUri);
return redisClient.connect(new SerializedObjectCodec());
}
}
< /code>
public class CacheImpl implements Cache {
@Autowired
private StatefulRedisConnection connect;

public Boolean addCourseInfosCache() {
RedisAsyncCommands commands = connect.async();
// disable auto-flushing
commands.setAutoFlushCommands(false);
List

Подробнее здесь: https://stackoverflow.com/questions/652 ... eredis-sen

Вернуться в «JAVA»