CentOS7安装部署 - Redis

redis

  • 拉取

    1
    wget http://download.redis.io/releases/redis-3.2.6.tar.gz
  • 解压

    1
    tar -zxvf redis-3.2.6.tar.gz
  • 编译

    1
    2
    cd redis-3.2.6
    make
  • 修改数据目录
    vi redis.conf

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    #指定日志目录
    logfile /root/data/soft/redis-3.2.6/data/logs/redis.log
    #指定数据目录
    dir /root/data/soft/redis-3.2.6/data
    #修改后台启动
    daemonize yes
    #允许外网访问
    protected-mode no
    #允许ip访问
    #bind 127.0.0.1
    #修改绑定端口
    port 6380
    #密码访问
    requirepass root123
  • 启动

    1
    2
    3
    cd redis-3.2.6/src 
    #启动
    ./redis-server ../redis.conf
  • 测试

    1
    2
    3
    4
    ./redis-cli  -p 6380
    dbsize
    flushall
    exit
  • 客户端
    安装Redis Desktop Manager
    输入连接ip、端口、密码

------ 本文结束------

本文标题:CentOS7安装部署 - Redis

文章作者:Perkins

发布时间:2019年06月24日

原始链接:https://perkins4j2.github.io/posts/85/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。