Redis# 常见报错Unsatisfied dependency设置密码主从配置

Posted LRcoding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redis# 常见报错Unsatisfied dependency设置密码主从配置相关的知识,希望对你有一定的参考价值。

1. Unsatisfied dependency expressed through field ‘redisTemplate‘

场景:SpringBoot 集成 Redis后,启动时报错

一般配置 Redis 时是

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

但是还不够,缺少一个依赖:commons-pool2

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-pool2</artifactId>
</dependency>

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

2. 设置密码

2.1 临时设置密码

  • 客户端查看是否有密码

    // 在客户端输入命令
    > config get requirepass
    "requirepass"
    ""  // 默认空
    
  • 设置密码

    > config set requirepass 12345
    
  • 在当前连接中,一旦设置密码,必须先验证通过密码,否则所有操作不可用

    > auth 12345
    
  • 再次使用客户端进行连接时,需要输入密码

    redis-cli.exe -h 127.0.0.1 -p 6379 -a 12345
    

2.2 永久设置密码(修改配置文件)

  • 在 Redis的根目录下,找到对应的配置文件redis.***.conf(windows中需要在“服务”中查看读取的是哪个配置文件),打开文件后找到 requirepass,然后添加密码

    # requirepass foobared
    requirepass 12345    -- 注意:行前不能有空格
    
  • 重启服务

    > redis-server.exe redis.windows.conf     // 需要指定使用哪一个配置文件,若修改的为之前使用的配置文件,便无需指定
    

3. windows下配置主从服务器

  • 复制一份 Redis 的文件,作为从库文件使用

  • 修改从库的配置文件

    • 修改端口port 为 8888

    • 添加配置,使之成为从库

      # replicaof <masterip> <masterport>
      replicaof 127.0.0.1 6379 -- slaveof是旧版本命令
      
      # masterauth <master-password>
      masterauth 12345  -- 若主服务器设置了密码,则需要进行增加
      
  • 进入到 Redis从库文件夹中,安装服务

    redis-server --service-install redis.windows.conf --service-name Redis8888
    
  • 启动 Redis8888 服务即可完成主从配置(从库默认不允许写入)

主从同步过程

以上是关于Redis# 常见报错Unsatisfied dependency设置密码主从配置的主要内容,如果未能解决你的问题,请参考以下文章

redis常见报错

Redis常见报错之 Redis::CommandError (MISCONF Redis is configured to save RDB snapshots, but it is current

JVM-Sandbox常见报错

kafka使用常见报错及解决方法

常见报错

ssh远程主机 常见报错处理