Note when going straight for success of Mr.Wang

0%

Linux命令安装Redis

Linux(Centos7.6)安装redis3.2.8

  1. 下载 http://download.redis.io/releases
  2. 上传到/opt文件夹并解压

    1
    tar -zxvf redis-3.2.8.tar.gz
  3. 安装依赖的gcc环境

    1
    2
    rpm -qa | grep gcc #先查询有没有对应的gcc环境
    yum install gcc
  4. make编译安装

    1
    2
    cd /opt/redis-3.2.8
    make MALLOC=libc & make install
  5. 设置redis开机启动

    1
    2
    /opt/redis-3.2.8/utils/install_server.sh
    chkconfig --list #查看开机启动列表
  6. 查看redis启动状态

    1
    ps -ef | grep redis
  7. 启动和关闭

    1
    2
    service redis_6379 start/redis-server/service redis_6379 restart
    service redis_6379 stop
  8. redis客户端界面操作

    1
    2
    redis-cli #开启客户端 
    quit #退出客户端
  9. 配置其他信息

    1
    2
    3
    4
    5
    vim /opt/redis-3.2.8/redis.conf
    protected-mode no(远程可以访问redis,默认不允许)
    daemonize yes
    bind 0.0.0.0(注释绑定端口号)
    requirepass: 123456 (设置redis密码,默认没有密码)
  10. 执行使配置生效

    1
    redis-server /opt/redis-3.2.8/redis.conf
-------------the end-------------