Amazon aws,搜集一些有用的文档

公司准备将一些应用迁移到amazon的EC2上,最近学习相关的知识,以下是搜到的比较有用的资料,以后写出迁移的过程及注意事项。

1、首先 官方文档首页:http://aws.amazon.com/documentation/官方blog:http://aws.typepad.com/

2、关于EC2的文档,非常详细,从建立账号到启动instance:Amazon Elastic Compute Cloud

Getting Started Guide (API Version 2008-12-01)

http://docs.amazonwebservices.com/AWSEC2/latest/GettingStartedGuide/

3、关于静态IP:(amazon叫做Elastic IP):Feature Guide: Amazon EC2 Elastic IP Addresses:

http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1346 

New EC2 Features: Static IP Addresses, Availability Zones, and User Selectable Kernels

http://aws.typepad.com/aws/2008/03/new-ec2-feature.html

4、一篇很有用的文档,包含的内容很全面,推荐好好看一下Amazon Elastic Compute Cloud

Developer Guide (API Version 2008-12-01)

http://docs.amazonwebservices.com/AWSEC2/latest/DeveloperGuide/

5、Amazon EC2 Charges
1个使用费用的计算器http://calculator.s3.amazonaws.com/calc5.html

With Amazon EC2, you don’t have to pay upfront fees, you don’t have to commit to a fixed amount of bandwidth, and you don’t have to meet any minimum usage requirements. As with other AWS services, you only pay for what you use.

The following figure summarizes how you are charged for using Amazon EC2.

6、Features for Building Failure Resilient Applications

Amazon Elastic Block Store—Amazon Elastic Block Store (Amazon EBS) offers persistent storage for Amazon EC2 instances. Amazon EBS volumes provide off-instance storage that persists independently from the life of an instance. Amazon EBS volumes are highly available, highly reliable volumes that can be attached to a running Amazon EC2 instance and are exposed as standard block devices. Amazon EBS volumes offer greatly improved durability over local Amazon EC2 instance stores, as Amazon EBS volumes are automatically replicated on the backend (in a single Availability Zone). For those wanting even more durability, Amazon EBS provides the ability to create point-in-time consistent snapshots of your volumes that are then stored in Amazon S3, and automatically replicated across multiple Availability Zones. These snapshots can be used as the starting point for new Amazon EBS volumes, and can protect your data for long term durability.

Regions and Availability Zones—Amazon EC2 provides the ability to place instances in different regions and Availability Zones. Regions are dispersed in separate geographic areas or countries. Availability Zones are located within regions and are engineered to be insulated from failures in other Availability Zones and provide inexpensive low latency network connectivity to other Availability Zones in the same region. By launching instances in separate Availability Zones, you can protect your applications from the failure of a single Availability Zone.

Elastic IP Addresses—Elastic IP addresses are static IP addresses designed for dynamic cloud computing. An Elastic IP address is associated with your account not a particular instance, and you control that address until you choose to explicitly release it. Unlike traditional static IP addresses, however, Elastic IP addresses allow you to mask instance or Availability Zone failures by programmatically remapping your public IP addresses to any instance in your account. Rather than waiting on a data technician to reconfigure or replace your host, or waiting for DNS to propagate to all of your customers, Amazon EC2 enables you to engineer around problems with your instance or software by quickly remapping your Elastic IP address to a replacement instance.

7、Amazon EC2 Flow

The following graphic and table explain the basic flow for using Amazon EC2.

Launch Confirmation Process

1

You create an AMI from scratch (Linux and UNIX only) or based on an existing AMI. This is optional, as you can launch instances of existing AMIs without modifying them. See Creating an AMI.

2

You bundle the AMI and obtain an AMI ID so you can launch as many instances of the AMI as you want. See Bundling an AMI.

3

You launch one or more instances of your AMI. See Launching and Using Instances.

4

You administer and use your instances and you would with any servers.

8.关于S3的使用和操作,一些不错的文章推荐1:http://plog.longwin.com.tw/news-technology/2008/02/21/amazon_s3_s3cmd_php_2008

推荐2:http://tzangms.com/programming/2335

推荐3:官方文档http://docs.amazonwebservices.com/AmazonS3/latest/gsg/

http://docs.amazonwebservices.com/AmazonS3/2006-03-01/

推荐4:几个不错的方便操作S3的工具关于官方提供的多种语言的sample:我的理解是提供给网站开发人员的,例如,开发一个网站,其中要提供一个存储在S3上的下载,这时,需要使用这个sample。

下面的S3对于不懂开发的我来说比较实用,我只需要能够创建bucket,上传,下载就可以了。S3cmd

安装:1)先安装windows的python2)右击“我的电脑”->“属性”->“高级”->“环境变量”,选择“PATH”,点“编辑”,把;C:\Python26加入“变量值”中(注意分号分割)。确定3)运行python setup.py install

4)运行python c:\python26\scripts\s3cmd --configure

   设定 access_key和secret_key

  5)详细的s3cmd使用说明见官方。php-aws

时间: 2024-07-30 03:06:08

Amazon aws,搜集一些有用的文档的相关文章

测试即是文档

文档需要全面,实时更新,并且易懂.我说的全面是指除了介绍程序的功能外还应该覆盖到代码中一些重要的地方.对很多人来说文档的重要性不言而喻,但很难保持它的及时性和准确性.糟糕的文档的后果通常会浪费更多的资源和时间.往往都是出于一些错误的原因而编写的文档. 要求文档的一些原因 有很多原因导致我们需要编写文档.团队经常会由于一些制度上的要求而编写文档,或者就是纯粹出于无知.下面是一些编写文档的错误的理由: 有人认为文档和项目的成败息息相关. 文档能够证明某些人的存在. 需求方除了文档也不知道要什么好 要

《Java核心技术 卷Ⅱ 高级特性(原书第10版)》一3.1.1 XML文档的结构

3.1.1 XML文档的结构 XML文档应当以一个文档头开始,例如: 严格来说,文档头是可选的,但是强烈推荐你使用文档头. 注意:因为建立SGML是为了处理真正的文档,因此XML文件被称为文档,尽管许多XML文件是用来描述通常不被称作文档的数据集的. 文档头之后通常是文档类型定义(Document Type Def?inition,DTD),例如: 文档类型定义是确保文档正确的一个重要机制,但是它不是必需的.我们将在本章的后面讨论这个问题. 最后,XML文档的正文包含根元素,根元素包含其他元素.

Java经验点滴:类注释文档编写方法_Java编程

文章来源:csdn 作者:chensheng913 对于Java语言,最体贴的一项设计就是它并没有打算让人们为了写程序而写程序--人们也需要考虑程序的文档化问题.对于程序的文档化,最大的问题莫过于对文档的维护.若文档与代码分离,那么每次改变代码后都要改变文档,这无疑会变成相当麻烦的一件事情.   解决的方法看起来似乎很简单:将代码同文档"链接"起来.为达到这个目的,最简单的方法是将所有内容都置于同一个文件.然而,为使一切都整齐划一,还必须使用一种特殊的注释语法,以便标记出特殊的文档:另

Amazon发布了企业云文档存储及协作服务Amazon Zocalo

摘要: 在今天在纽约举行的AWS 2014峰会上,Amazon发布了企业云文档存储及协作服务Amazon Zocalo. 云服务Zocalo的功能包括文档云存储.跨设备同步.审计跟踪等功能.团队成员可对文档提供反馈, 在今天在纽约举行的AWS 2014峰会上,Amazon发布了企业云文档存储及协作服务Amazon Zocalo. 云服务Zocalo的功能包括文档云存储.跨设备同步.审计跟踪等功能.团队成员可对文档提供反馈,如可以给共享网页或PDF文档的特定区域添加批注等.Zocalo具有桌面版和

Amazon发布文档存储与协作服务Zocalo

摘要: 在今天在纽约举行的AWS 2014峰会上,Amazon发布了企业云文档存储及协作服务Amazon Zocalo. 云服务Zocalo的功能包括文档云存储.跨设备同步.审计跟踪等功能.团队成员可对文档提供反馈, 在今天在纽约举行的AWS 2014峰会上,Amazon发布了企业云文档存储及协作服务Amazon Zocalo. 云服务Zocalo的功能包括文档云存储.跨设备同步.审计跟踪等功能.团队成员可对文档提供反馈,如可以给共享网页或PDF文档的特定区域添加批注等.Zocalo具有桌面版和

文库类网站的文档中的外链有用吗

我们都知道百度自己的产品权重都很高,在百度搜索某些关键词的时候,百度产品赫赫在列,有的傲居榜首.这些包括百度百科.知道.新闻.文库等等.例如目前"单反相机"这个词通过百度搜索后在首页的结果中有5个是就是百度自己的产品,10个自然排名中,五个在列.这次小编分享的主角之一也是百度其中的一款产品--百度文库. 我们知道百度对JS.flash和frame框架结构十分感冒,那么百度对自己的文库当中的内容能识别吗?对其他网站的文库类产品又怎样呢?我们以<详述查看网页是否使用ALT标签和正确写

求助,谁有用java开发过文档管理系统?

问题描述 求助,谁有用java开发过文档管理系统? 求助求助求助求助求助求助求助求助求助,谁有用java开发过文档管理系统? 解决方案 这帖子删了怎么又发?问答社区不许发这种帖子. 解决方案二: 如果你能及时采纳,我可以给你一些哦 解决方案三: 看看有没有开源的吧.

研究 Java 中 XML 文档模型的特性和性能

xml|性能 Java 中的 XML: 文档模型,第一部分:性能 研究 Java 中 XML 文档模型的特性和性能 文档选项 将此页作为电子邮件发送 最新推荐 Java 应用开发源动力 - 下载免费软件,快速启动开发 级别: 初级 Dennis M. Sosnoski, 总裁, Sosnoski Software Solutions, Inc. 2001 年 9 月 01 日 在本文中,Java 顾问 Dennis Sosnoski 比较几个 Java 文档模型的性能和功能.当选择模型时,无法做

如何用 servlet 打开非 HTML 格式的文档(转)

servlet 如何用 servlet 打开非 HTML 格式的文档一种向 Web 客户端发送非 HTML 格式文档的简单方法By Marla Bonar(marla.bonar@javaworld.com) 摘要Java Servlet 编程可以很方便地将 HTML 文件发送到客户端 Web 浏览器.然而许多站点还允许访问非 HTML 格式的文档,包括 Adobe PDF.Microsoft Word 和 Micorsoft Excel 等.事实上这些非 HTML 格式只要能用 MIME 类型