centos7安装redis数据库并实现远程连接(超详细)

1、安装准备

1、开启防火墙: systemctl start firewalld
设为开机启动:systemctl enable firewalld
2、打开防火墙端口:
阿里云的话去配置安全组将端口开放

firewall-cmd --zone=public --add-port=6379/tcp --permanent 
firewall-cmd --reload

2、安装

1.安装gcc依赖:yum -y install gcc automake autoconf libtool make
2.下载redis:wget http://download.redis.io/releases/redis-4.0.11.tar.gz
3.解压安装:tar xzf redis-4.0.11.tar.gz

3、配置redis

  1. 进入redis目录下: cd redis-4.0.11 然后执行:make
  2. 修改配置文件:vim redis.conf
    bind 127.0.0.1注释掉 增加一行bind 0.0.0.0 //实现远程访问
    默认为保护模式,把 protected-mode yes 改为 protected-mode no
    默认为不守护进程模式,把daemonize no 改为daemonize yes
    requirepass foobared前的“#”去掉,密码改为你想要设置的密码
    requirepass 123456,这样配置文件就修改好了
    按esc退出编辑模式,:wq退出文件
  3. 启动服务:
    进入到解压的文件夹redis-4.0.10下
    执行命令 ./src/redis-server redis.conf 出现一下内容就说明启动成功了
    在这里插入图片描述
    用命令查看是否已经启动 :ps aux | grep redis
    在这里插入图片描述

4、使用RedisDesktopManager可视化工具实现远程连接

RedisDesktopManage可视化工具大家自己百度下载安装就可以了在这里就不提供下载链接了。
打开RedisDesktopManager 点击:
centos7安装redis数据库并实现远程连接(超详细)_第1张图片
centos7安装redis数据库并实现远程连接(超详细)_第2张图片
填入相应的信息就可以实现远程登陆了!!

你可能感兴趣的:(centos7安装redis数据库并实现远程连接(超详细))