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
  • 相关阅读:
    四种方案解决ScrollView嵌套ListView问题
    [Android Bug] ListView中Header, Footer无法隐藏(gone)的问题
    Mysql介绍,与将脚本导入新数据库
    000 SpringBoot属性配置
    navicat的安装
    gradle
    004 Numpy
    003 Scipy库简介
    Mysql安装(绿色版安装)
    010 secondary namenode(同步元数据和日志)
  • 原文地址:https://www.cnblogs.com/sswind/p/12117962.html
Copyright © 2011-2022 走看看