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>       

      

  • 相关阅读:
    <爬虫实例> 8684公交网-太原公交线路信息
    <爬虫> requests模块
    爬虫四 selenium + phantomjs & Headless Chrome
    爬虫三 bs4&xpath&jsonpath
    爬虫二 cookie&正则
    爬虫一 发请求&定制请求&异常处理&配置代理
    抽屉页面设计
    HTML标签及其属性
    Python之路 day3 高阶函数
    Python之路 day3 递归函数
  • 原文地址:https://www.cnblogs.com/kjjmj/p/13268357.html
Copyright © 2011-2022 走看看