阿里云ECS安装Redis并使用RedisDesktopManager连接

1.连接ECS
  首先要先连接阿里ECS,找到云服务器ECS->实例->查看公网IP
修改实例密码, 之后使用xshell连接
阿里云ECS安装Redis并使用RedisDesktopManager连接_第1张图片
2.安装
2.1下载
Redis下载
2.2上传至服务器
在这里插入图片描述
2.3解压

tar zxvf redis-5.0.3.tar.gz

2.4安装依赖

yum -y install gcc-c++ autoconf automake

阿里云ECS安装Redis并使用RedisDesktopManager连接_第2张图片
2.5预编译

cd redis-5.0.3/
make

阿里云ECS安装Redis并使用RedisDesktopManager连接_第3张图片
2.6安装
创建安装目录

mkdir -p /usr/local/redis

指定安装目录

make PREFIX=/usr/local/redis/ install

阿里云ECS安装Redis并使用RedisDesktopManager连接_第4张图片
安装成功后查看usr/local/redis/bin目录
阿里云ECS安装Redis并使用RedisDesktopManager连接_第5张图片
2.7启动

./redis-server

阿里云ECS安装Redis并使用RedisDesktopManager连接_第6张图片
默认为前台启动,修改为后台启动
到根目录root下复制redis.conf至安装路径下

cp redis.conf /usr/local/redis/bin/

修改安装路径下的redis.conf,将 daemonize 修改为yes

vim redis.conf

按 i 进入编辑模式, 将 daemonize 修改为yes

在这里插入图片描述
注释掉绑定的ip , 或者将本机ip添加到配置中, 否则通过客户端无法访问
在这里插入图片描述
关闭保护模式
在这里插入图片描述
添加访问认证
在这里插入图片描述
修改完成之后按ESC
输入:wq 写入并退出
在这里插入图片描述

然后找到刚才启动的Redis进程

ps -ef | grep redis

阿里云ECS安装Redis并使用RedisDesktopManager连接_第7张图片
杀死进程关闭Redis服务
阿里云ECS安装Redis并使用RedisDesktopManager连接_第8张图片
指定配置文件重启Redis

./redis-server ./redis.conf

在这里插入图片描述
到此 , Redis基本安装配置完毕, 但是想要通过远程的客户端连接ECS服务器上的Redis还需要一步配置, 要在ECS上将6379端口开放, 否则外网无法访问

在ECS控制台找到安全组->配置规则
阿里云ECS安装Redis并使用RedisDesktopManager连接_第9张图片
阿里云ECS安装Redis并使用RedisDesktopManager连接_第10张图片
手动添加, 开放6379端口
在这里插入图片描述

打开RedisDesktopManager客户端测试连接
RedisDesktopManager客户端下载

阿里云ECS安装Redis并使用RedisDesktopManager连接_第11张图片
连接成功
阿里云ECS安装Redis并使用RedisDesktopManager连接_第12张图片

你可能感兴趣的:(阿里云ECS安装Redis并使用RedisDesktopManager连接)