Centos6 安装Redis数据库

一、 环境

Linux 操作系统: centos6.9

Redis版本: redis.x86_64  3.2.12-1.el6

 

二、 安装步骤

1、 yum查看redis 版本

[root@build ~]# yum list redis
Loaded plugins: fastestmirror, priorities, security
Repository epel is listed more than once in the configuration
Loading mirror speeds from cached hostfile
 * webtatic: sp.repo.webtatic.com
epel                                                                                                        | 3.2 kB     00:00     
epel/primary                                                                                                | 3.2 MB     00:00     
epel                                                                                                                   12517/12517
extras                                                                                                      | 3.4 kB     00:00     
mongodb-org-3.4                                                                                             | 2.5 kB     00:00     
nginx                                                                                                       | 2.9 kB     00:00     
nodesource                                                                                                  | 2.5 kB     00:00     
os                                                                                                          | 3.7 kB     00:00     
updates                                                                                                     | 3.4 kB     00:00     
webtatic                                                                                                    | 3.6 kB     00:00     
Available Packages
redis.x86_64                                                   3.2.12-1.el6                                                    epel

2、 yum安装redis

[root@build ~]# yum install redis

3、 启动redis 服务

[root@build ~]# service redis start
Starting redis-server:                                     [  OK  ]

4、 启动redis命令行

[root@build ~]# redis-cli
127.0.0.1:6379> 

5、 设置开机自动启动redis

[root@build ~]# chkconfig --add redis

6、 设置远程连接密码验证

127.0.0.1:6379> config set requirepass "yazhishaw"
OK

 

三、 允许远程连接redis数据库

1、 编辑redis配置文件

[root@VM_0_11_centos ~]# vi /etc/redis.conf

2、 解除只能本地ip连接redis的绑定

    将 bind 127.0.0.1 使用#注释掉,改为# bind 127.0.0.1(bind配置的是允许连接的ip,默认只允许本机连接;若远程连接需注释掉,或改为0.0.0.0)

   Centos6 安装Redis数据库_第1张图片

3、 允许公网访问redis

    将 protected-mode yes 改为 protected-mode no(3.2之后加入的新特性,目的是禁止公网访问redis cache,增强redis的安全性)

     Centos6 安装Redis数据库_第2张图片

3、 设置远程连接的密码验证

 将 requirepass foobared 注释去掉,foobared为密码,也可修改为别的值(可选,建议设置)

    Centos6 安装Redis数据库_第3张图片

4、 重启redis服务

[root@VM_0_11_centos ~]# service redis restart
Stopping redis-server:                                     [  OK  ]
Starting redis-server:                                     [  OK  ]

5、 下载RedisDesktopManager工具

下载地址: https://redisdesktop.com/download

打开RedisDesktopManager工具 ,左上角点击链接到redis服务器

Centos6 安装Redis数据库_第4张图片

弹出连接界面填写相应的服务器信息

Centos6 安装Redis数据库_第5张图片

最后点击测试连接即可

你可能感兴趣的:(服务器配置)