[AWS][Nosql] Elasticache for Redis 动手实验101

实验包括:
  1. 创建一个Amazon ElasticCache 集群
  2. 连接这个集群
  3. 运行命令
  4. 删除集群

Task1:创建一个ElasticCache 集群

参数的解释我在视频课上跟大家说一下。
[AWS][Nosql] Elasticache for Redis 动手实验101

[AWS][Nosql] Elasticache for Redis 动手实验101

创建完成后是下面这个状态:

[AWS][Nosql] Elasticache for Redis 动手实验101

Task2:获取ElasticCache的Endpoint

mycache.mdylbb.0001.usw2.cache.amazonaws.com:6379

[AWS][Nosql] Elasticache for Redis 动手实验101

Task3:创建连接ElasticCache集群的跳板机EC2

创建EC2已经在前面的章节讲过很多次了,此处省略…
创建跳板机EC2的时候注意:

  1. Security Group:inbound放行redis的TCP端口:6379、放行SSH 22.
  2. VPC与Redis所在VPC的ID一致

Task4:登录跳板机连接ElasticCache集群

sudo yum install -y gcc
wget http://download.redis.io/releases/redis-3.0.2.tar.gz
tar xvzf redis-3.0.2.tar.gz
cd redis-3.0.2
make
src/redis-cli -c -h mycache.fqvxin.0001.cnn1.cache.amazonaws.com.cn -p 6379

Task5:测试ElasticCache集群

set a “hello"
get a
get b
set b "Good-bye" EX 5 ##b的缓存失效时间5s
quit

详细视频教程参考:
https://edu.51cto.com/center/course/lesson/index?id=558302

相关推荐