zoukankan      html  css  js  c++  java
  • centos7安装redis5

    1.下载包 redis-5.0.7.tar.gz

    链接: https://pan.baidu.com/s/1hsDDZ0pZx5L_bZNLubZu7Q 提取码: ghnc

    2.安装

    [root@henry ~]# tar -xf redis-5.0.7.tar.gz -C /usr/share/
    [root@henry ~]# cd /usr/share/redis-5.0.7/
    [root@henry redis-5.0.7]# make     #安装
    [root@henry redis-5.0.7]# mkdir -p /usr/local/reids-5.0.7     #创建redis的使用目录
    [root@henry redis-5.0.7]# cd /usr/local/reids-5.0.7
    [root@henry reids-5.0.7]# cp /usr/share/redis-5.0.7/src/redis-server ./     #拷贝服务端程序
    [root@henry reids-5.0.7]# cp /usr/share/redis-5.0.7/src/redis-cli ./      #拷贝客户端程序
    [root@henry reids-5.0.7]# cp /usr/share/redis-5.0.7/redis.conf ./      #拷贝配置文件
    [root@henry reids-5.0.7]# sed -i '/^bind 127.0.0.1$/s/127.0.0.1/192.168.40.10/g' /usr/local/reids-5.0.7/redis.conf     #192.168.40.10是你本机IP
    [root@henry reids-5.0.7]# sed -i '/protected-mode/s/yes/no/g' /usr/local/reids-5.0.7/redis.conf     #关闭redis的保护模式
    [root@henry reids-5.0.7]# sed -i '/daemonize/s/no/yes/g' /usr/local/reids-5.0.7/redis.conf     #开启redis的后台运行模式 
    [root@henry reids-5.0.7]# sed -i 's/# requirepass foobared/requirepass 123123/g' /usr/local/reids-5.0.7/redis.conf     #开启redis的密码并将密码设置成123123 
    [root@henry reids-5.0.7]# sed -i 's/6379/16379/g' /usr/local/reids-5.0.7/redis.conf     #修改redis的监听端口为16379
    [root@henry reids-5.0.7]# /usr/local/reids-5.0.7/redis-server /usr/local/reids-5.0.7/redis.conf     #启动redis
    [root@henry reids-5.0.7]# ./redis-cli -h 192.168.40.10 -a 123123 -p 16379     #测试连接
    Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
    192.168.40.10:16379> ping
    PONG
    192.168.40.10:16379>       

      

  • 相关阅读:
    推荐系统中的注意力机制——阿里深度兴趣网络(DIN)
    负样本采样及bias校准、ctr平滑
    todo提纲
    漫谈深度学习时代点击率预估技术进展 &&深度学习在推荐系统上的发展
    对数据分析的一点思考
    计算广告中常用深度学习网络
    pandas常见函数详细使用
    ann搜索算法(Approximate Nearest Neighbor)
    LintCode翻转字符串问题
    python常用库
  • 原文地址:https://www.cnblogs.com/kjjmj/p/13268357.html
Copyright © 2011-2022 走看看