centos7下载安装redis并利用RedisDesktopManager工具进行远程连接教程

我安装的是redis-5.0.4版本,其他版本修改版本号即可。
我实在root目录下,所以执行wget命令下载,默认下载在root目录下

  1. wget http://download.redis.io/releases/redis-5.0.4.tar.gz
  2. tar -zxvf redis-5.0.4.tar.gz
  3. cd src
    安装gcc
  4. yum install -y gcc
  5. cd src
  6. make(必须安装gcc,才能成功执行此命令)
  7. make
  8. make test
  9. make install(安装redis)
  10. ./redis-server(启动redis,如图所示)
    centos7下载安装redis并利用RedisDesktopManager工具进行远程连接教程_第1张图片
    **此时按下CTRL+C时,也关闭了reids,可以尝试另外一个命令./redis-server &

redis连接配置redis.conf文件:
1.cd ..(redis.conf文件默认在redis安装根目录下)
2.vi redis.conf

  • [ 1] daemonize yes(no改为yes)
    centos7下载安装redis并利用RedisDesktopManager工具进行远程连接教程_第2张图片
    - [ 2]protected-mode no(yes改为no)
    centos7下载安装redis并利用RedisDesktopManager工具进行远程连接教程_第3张图片
    - [ 3]requirepass foobared(将foobared改为自己的密码,并且删除前面”#“,实列:我的密码时“root”)
    centos7下载安装redis并利用RedisDesktopManager工具进行远程连接教程_第4张图片
    - [ 4]bind 自己虚拟机的IP(如图,此步骤最为关键,网上很多教程让修改为bind 0.0.0.0,或者注释这一行,笔者亲测多种方式,就这种方式有效。)
    centos7下载安装redis并利用RedisDesktopManager工具进行远程连接教程_第5张图片

你可能感兴趣的:(计算机)