zoukankan      html  css  js  c++  java
  • redis安装

    1. 获取源码包

    [root@localhost ~]# wget http://download.redis.io/releases/redis-5.0.7.tar.gz

    2. 解压编译安装

    [root@localhost ~]# tar -zxf redis-5.0.7.tar.gz
    [root@localhost ~]# cd redis-5.0.7
    [root@localhost ~/redis-5.0.7]# make && make install

    3. 添加到系统服务

    [root@localhost ~/redis-5.0.7]# bash 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!

    4. 开放端口

    [root@localhost ~]# firewall-cmd --zone=public --add-port=6379/tcp
    [root@localhost ~]# firewall-cmd --zone=public --add-port=6379/tcp --permanent

    5. 启动

    [root@localhost ~]# systemctl start redis_6379
  • 相关阅读:
    04 数值向量和数组
    项目成功到底取决于什么?
    NBA不拘一格,花大虫入选名人堂
    [Buzz.Today]2011.08.07
    Localization in QT
    只做自行车的CAD
    [Buzz.Today]Intel开源Embree
    [Revisit SolidMCP]虎年中期回顾篇
    Google是如何设定目标并测量成功的
    VS2008: Unable to start debugging, Remote Debugging Monitor has been closed
  • 原文地址:https://www.cnblogs.com/sswind/p/12117962.html
Copyright © 2011-2022 走看看