一.Redis安装
1.下载linux压缩包 【redis-5.0.5.tar.gz】
2.通过FlashFXP把压缩包传送到服务器
3.解压缩
tar -zxvf redis-5.0.5.tar.gz
4.进入redis-5.0.5可以看到redis的配置文件redis.conf
5.基本的环境安装
使用gcc -v 命令查看gcc版本已经是4.8.5了,于是就没有再次安装,直接执行make,安装完之后再次make,出现图片内容即可。
yum install gcc-c++
make
make
make install //确认安装的东西
6.redis默认安装路径是 /usr/local/bin
在该目录下可以看到redis的客户端和服务端
cd /usr/local/bin/
7.将redis的配置文件拷贝到新建的目录myredis-config下
我们以后就使用myredis-config下的配置文件,错了还可以回到原来那里取
[root@Lzdwtl bin]# mkdir myredis-config
[root@Lzdwtl bin]# cp /home/caoyinyuan/redis-5.0.5/redis.conf myredis-config/
8.redis默认不是后台启动,需要修改配置文件
按图修改文件,将daemonize的值修改为yes
[root@Lzdwtl myredis-config]# vim redis.conf
9.启动redis
- 回到bin目录下
- 启动redis服务端,通过指定的配置文件启动服务
[root@Lzdwtl bin]# redis-server myredis-config/redis.conf
- 启动redis客户端
[root@Lzdwtl bin]# redis-cli -p 6379
# 如果redis设置有密码,则需要现认证才能发送信息,"123456"是redis的密码
127.0.0.1:6379> auth "123456"
10.查看redis的进程是否开启
[root@Lzdwtl /]# ps -ef|grep redis
11.关闭redis服务
执行shutdown和exit即可推出redis服务,再次查看也发现redis的服务端和客户端进程都消失了
127.0.0.1:6379> shutdown
not connected> exit
二.RedisDesktop连接远程数据库
1.修改配置文件redis.conf
- 将bind 127.0.0.1 改为 bind 0.0.0.0
- 将 protected-mode yes 改为 protected-mode no
2.运行Redis管理工具
(这个步骤的前提是redis已经开启)新建连接,地址填服务器的地址,然后点击测试连接,成功后点击右下角的确定即可。
三.错误与总结
1、redis管理工具连接不上服务器
解决办法:
- bind 127.0.0.1 改为bind 0.0.0.0
- 将 protected-mode yes 改为 protected-mode no
- 设置redis秘密,requirepass 123456
设置密码后登陆需要如下图操作
[root@Lzdwtl bin]# redis-server myredis-config/redis.conf
[root@Lzdwtl bin]# redis-cli
127.0.0.1:6379> ping
(error) NOAUTH Authentication required.
127.0.0.1:6379> auth 123456
OK