• 【Redis】# 常见报错Unsatisfied dependency、设置密码、主从配置


    1. Unsatisfied dependency expressed through field ‘redisTemplate‘

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

    一般配置 Redis 时是

    <dependency>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-data-redisartifactId>
    dependency>
    
    • 1
    • 2
    • 3
    • 4

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

    <dependency>
        <groupId>org.apache.commonsgroupId>
        <artifactId>commons-pool2artifactId>
    dependency>
    
    <dependency>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-data-redisartifactId>
    dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    2. 设置密码

    2.1 临时设置密码

    • 客户端查看是否有密码

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

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

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

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

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

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

      image-20221028125226057

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

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

    3. windows下配置主从服务器

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

    • 修改从库的配置文件

      • 修改端口port 为 8888

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

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

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

    主从同步过程
    image-20221028134623866

  • 相关阅读:
    【c++】运算符重载实例
    解决 “ImportError: attempted relative import with no known parent package“ 问题
    DDD领域驱动设计-值对象
    【网络丢包,网络延迟?这款神器帮你搞定所有!】
    【LeetCode-中等题】116. 填充每个节点的下一个右侧节点指针
    一种新的UI测试方法:视觉感知测试
    Elastic SQL 输入:数据库指标可观测性的通用解决方案
    nvcc -V和nvidia-smi的关系
    acm拿国奖的第二关:栈和队列
    【Java】springboot 枚举参数
  • 原文地址:https://blog.csdn.net/qq_38134242/article/details/127587733