码迷,mamicode.com
首页 > 系统相关 > 详细

AWS ElastiCache 使用笔记

时间:2016-05-15 18:18:12      阅读:618      评论:0      收藏:0      [点我收藏+]

标签:

使用 AWS 管理控制台创建 Redis 缓存集群

创建子网组

在 Amazon VPC 中创建集群,则您必须指定缓存子网组。ElastiCache 使用该缓存子网组选择一个子网和此子网内的 IP 地址,以便与您的缓存节点相关。

技术分享

创建安全组

使用 Amazon VPC 安全组控制对缓存集群的访问。

技术分享

技术分享

创建参数组

技术分享

使用 AWS 管理控制台创建 Redis 缓存集群

选择 Redis 引擎

技术分享

指定集群详细信息

技术分享

配置高级设置

技术分享

查看和启动

技术分享

修改 ElastiCache 缓存集群

技术分享

连接到集群节点

使用AWS管理控制台查找终端节点

单击集群具有的节点数

技术分享

技术分享

使用AWS CLI查找终端节点

$ aws elasticache describe-cache-clusters --cache-cluster-id my-cache --show-cache-node-info

技术分享

连接到 Redis 集群

使用 redis-cli 连接到 Redis 集群

安装gcc

$ sudo yum install gcc

下载编译redis-cli实用工具

$ wget http://download.redis.io/redis-stable.tar.gz
$ tar xvzf redis-stable.tar.gz
$ cd redis-stable
$ make && make install

连接到redis集群

$ redis-cli -h my-cache.fafvgr.0001.usw2.cache.amazonaws.com -p 6379

您现已连接至集群并且可以运行 Redis 命令。以下是示例。

> set a "hello"     // Set key "a" with a string value and no expiration
OK
> get a              // Get value for key "a"
"hello"
> get b              // Get value for key "b" results in miss
(nil)                
> quit               // Exit from redis-cli

使用 AWS CLI 创建缓存子网组

$ aws elasticache create-cache-subnet-group     --cache-subnet-group-name mycachesubnetgroup     --cache-subnet-group-description "Testing"     --subnet-ids subnet-53df9c3a

 

AWS ElastiCache 使用笔记

标签:

原文地址:http://www.cnblogs.com/edward2013/p/5495640.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!