• Linux 完整 Redis 安装配置教程(可用远程连接)


    Linux 完整 Redis 安装配置教程(可用远程连接)

    首先 官网 看谁不如看官网(除了看我)

    令人开心的是官网给了 The latest stable release is always available ,一个固定的最终稳定版本的下载地址

    https://download.redis.io/redis-stable.tar.gz

    服务器上运行 wget 命令加载该安装包

    weget https://download.redis.io/redis-stable.tar.gz
    
    • 1

    解压

    tar zxf redis-stable
    
    • 1

    解压后 make

    cd redis-stable
    make
    
    • 1
    • 2

    make 成功后基本就完事了,但是需要进行配置

    编辑

    cd redis-stable
    vim redis.conf
    
    • 1
    • 2

    配置 redis.conf

    我们重点配置几个,其他个人需要可以查阅相关文档自定义配置。

    建议配置访问密码,打开配置项 requirepass 后面跟你的密码

    requirepass mima
    
    • 1

    bind 127.0.0.1 -::1 这个玩意,默认它打开了,加 # 注掉

    #bind 127.0.0.1 -::1
    
    • 1

    允许远程连接 protected-mode yes 改成 no

    protected-mode no
    
    • 1

    开启后台启动

    daemonize yes
    
    • 1

    改完后,去掉注释的配置文件如下:

    protected-mode no
    port 6379
    tcp-backlog 511
    timeout 0
    tcp-keepalive 300
    daemonize yes
    pidfile /var/run/redis_6379.pid
    loglevel notice
    logfile ""
    databases 16
    always-show-logo no
    set-proc-title yes
    proc-title-template "{title} {listen-addr} {server-mode}"
    stop-writes-on-bgsave-error yes
    rdbcompression yes
    rdbchecksum yes
    dbfilename dump.rdb
    rdb-del-sync-files no
    dir ./
    replica-serve-stale-data yes
    replica-read-only yes
    repl-diskless-sync yes
    repl-diskless-sync-delay 5
    repl-diskless-sync-max-replicas 0
    repl-diskless-load disabled
    repl-disable-tcp-nodelay no
    replica-priority 100
    requirepass mima
    lazyfree-lazy-eviction no
    lazyfree-lazy-expire no
    lazyfree-lazy-server-del no
    replica-lazy-flush no
    lazyfree-lazy-user-del no
    lazyfree-lazy-user-flush no
    oom-score-adj no
    oom-score-adj-values 0 200 800
    disable-thp yes
    appendonly no
    appendfilename "appendonly.aof"
    appenddirname "appendonlydir"
    appendfsync everysec
    no-appendfsync-on-rewrite no
    auto-aof-rewrite-percentage 100
    auto-aof-rewrite-min-size 64mb
    aof-load-truncated yes
    aof-use-rdb-preamble yes
    aof-timestamp-enabled no
    slowlog-log-slower-than 10000
    slowlog-max-len 128
    latency-monitor-threshold 0
    notify-keyspace-events ""
    hash-max-listpack-entries 512
    hash-max-listpack-value 64
    list-max-listpack-size -2
    list-compress-depth 0
    set-max-intset-entries 512
    zset-max-listpack-entries 128
    zset-max-listpack-value 64
    hll-sparse-max-bytes 3000
    stream-node-max-bytes 4096
    stream-node-max-entries 100
    activerehashing yes
    client-output-buffer-limit normal 0 0 0
    client-output-buffer-limit replica 256mb 64mb 60
    client-output-buffer-limit pubsub 32mb 8mb 60
    hz 10
    dynamic-hz yes
    aof-rewrite-incremental-fsync yes
    rdb-save-incremental-fsync yes
    jemalloc-bg-thread yes
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70

    启动 Redis 并远程连接

    启动 redis

    cd redis-server
    ./redis-server ../redis.conf 
    
    • 1
    • 2

    服务器记得放开你的 6379 端口

    远程连接可视化工具

    建议下载 AnotherRedisDesktopManager
    gitee 地址

    在这里插入图片描述

    新建连接填入信息即可

    在这里插入图片描述

  • 相关阅读:
    Android笔试面试题AI答之Kotlin(3)
    axios--》axios初步操作
    DDPM(Denoising Diffusion Probabilistic Models)扩散模型简述
    python使用django的详细过程
    Unity 2D 游戏学习笔记(6)
    Istio服务网格核心资源YAML编排文件配置清单
    5.64 BCC工具之llcstat.py解读
    redis在服务器linux下的启动的相关命令(安装和配置)
    【算法训练-二叉树 二】【重建二叉树】依据前序与中序遍历序列重建二叉树
    分久必合?数据库进入“超”融合时代 | 爱分析调研
  • 原文地址:https://blog.csdn.net/w903328615/article/details/125900793