美文网首页Database
redis快速安装

redis快速安装

作者: 阿丑酱 | 来源:发表于2018-01-16 13:47 被阅读12次

    下载包

    curl -O http://download.redis.io/redis-stable.tar.gz
    

    解压

    tar xf redis-stable.tar.gz
    

    cd 到目录

    cd redis-stable
    

    直接make 编译

    make && make  install 
    

    开始初始化配置

    cd /root/redis-stable/utils
    ./install_server.sh
    ~~~~~~~~~
    [root@pa1 utils]#./install_server.sh 
    Welcome to the redis service installer
    This script will help you easily set up a running redis server
    
    Please select the redis port for this instance: [6379] 6379
    Please select the redis config file name [/etc/redis/6379.conf] /etc/redis/6379.conf
    Please select the redis log file name [/var/log/redis_6379.log] /var/log/redis_6379.log
    Please select the data directory for this instance [/var/lib/redis/6379] /var/lib/redis/6379
    Please select the redis executable path [/usr/local/bin/redis-server] /usr/local/bin/redis-server
    Selected config:
    Port           : 6379
    Config file    : /etc/redis/6379.conf
    Log file       : /var/log/redis_6379.log
    Data dir       : /var/lib/redis/6379
    Executable     : /usr/local/bin/redis-server
    Cli Executable : /usr/local/bin/redis-cli
    Is this ok? Then press ENTER to go on or Ctrl-C to abort.
    Copied /tmp/6379.conf => /etc/init.d/redis_6379
    Installing service...
    Successfully added to chkconfig!
    Successfully added to runlevels 345!
    Starting Redis server...
    Installation successful!
    

    会输出一些重要的信息

    image.png

    查看配置文件里面必要的参数(如有不同.请修改,只需要修改bind地址)

    vim /etc/redis/6379.conf

    bind 0.0.0.0 
    daemonize yes
    logfile "/var/log/redis.log"
    

    启动

    /etc/init.d/redis_6379 start
    

    关闭

    /etc/init.d/redis_6379 stop
    

    查看端口是否成功开启

    [root@pa1 ~]#netstat -lntup |grep redis
    tcp 0 0 0.0.0.0:6379 0.0.0.0:* LISTEN 6977/redis :6379
    tcp6 0 0 :::6379 :::
    LISTEN 6977/redis *:6379

    测试是否安装成功

    [root@pa1 src]#redis-cli
    127.0.0.1:6379>

    成功~~~~~~~~~~

    相关文章

      网友评论

        本文标题:redis快速安装

        本文链接:https://www.haomeiwen.com/subject/jgesoxtx.html