Getting Started with Amazon EC2 (1 year free AWS VPS web hosting)
from: http://blog.coolaj86.com/articles/getting-started-with-amazon-ec2-1-year-free-aws-vps-web-hosting.html
Amazon Web Services
- Google "Amazon Web Service Free Tier"
- http://aws.amazon.com/
- Login (or sign-up)
NOTE: It will likely fail to verify your address. Ignore the error (it's one-time only), scroll down, check the agree box, and continue again.
Free Usage Tier
- http://aws.amazon.com/
- My Account / Console
- AWS Management Console
- EC2 Virtual Servers in the Cloud
- Select Region (next to Help in top right)
- Launch Instance (specific to region)
- Choose Ubuntu 12.04 micro (free usage tier)
- Downlad the pem file
- Continue
Managing the Instance
- Instances
- Elastic IP
- Allocate New Address
- Associate Address
Logging in from Mac / Linux
Host User ubuntu IdentityFile ~/.ssh/my-aws-key.pem
Logging in from windows
- Open
puttygen
- Go to the conversion tab
- Load the pem file
- Click save private key
- Open
putty
- Put the host as ubuntu@
- Load the pem file
- Save the profile for later use
COST WARNING
It is extremely important that you your type show up as t1.micro
and that you terminate the instance before your year is up. It's also important that you not exceed the bandwidth quota.
This is just to get a flavor for a VPS, not a true VPS solution. It is useful for Cloud Computing Services, but that's a different use case.
Use [ChunkHost][chunkhost-affiliate], Linode, or [ThrustVPS]thrustvps-affiliate for long-term / production use.
Errata
- By "good for VPSes and Web Development" I meant "good for VPSes and Local Development"
- By "we can safely allow all TCP" I didn't mean "safe"... I meant "for the sake of ease"
Colloquialisms (Jargon)
slashdot effect
Back in the old days we didn't have http://reddit.com, we had http://slashdot.com. The slashdot effect is when someone posts an article (ostensibly on slashdot) about your site or service that drives unexpected traffic to your server and causes it to become very slow or fail to respond to requests entirely. (one server can only handle so much, you see)
64-bit
Back in the old days we had 8-bit 8088 CPUs, barely fit to work as a calculator. Then there was the 16-bit 286, and finally the 32-bit 386 which, with a few enhancements here and there, has stuck around for the past 25 years. The only real problem with 32-bit was that it meant that a computer could have only 4GiB of RAM, which was good enough until around 2000 when we decided that 640 KiB *definitely isn't enough for anyone. The 64-bit x86_64 was created to solve this problem. Although the memory bus on a motherboard is often only really 42-bits or so, the processor must be a power of 2.
By AJ ONeal
Was this useful to you? Share it!
Getting Started with Amazon EC2 (1 year free AWS VPS web hosting)的更多相关文章
- Amazon EC2免费VPS防止超额被扣钱三大方法:流量 硬盘读写 运行时长
Amazon EC2也就是亚马逊云服务免费VPS主机服务,内存是613MB,月流量是30GB,主机空间是30GB,可以免费使用一年,又加上Amazon服务器全球多个节点CDN和本身的名气,早在2010 ...
- 通过SecureCRT访问亚马逊Amazon EC2主机
亚马逊推出了免费的云主机服务器 Amazon EC2,它是通过安全密钥来访问主机的. 问题是下载的密钥在SecureCRT 上无法直接使用,需要转换. 下面的方法可以在自己的linux主机上生成sec ...
- How to log in to Amazon EC2 using PEM format from SecureCRT
SecureCRT requires both a private and a public key. Use the supplied key.pem file from EC2 here as y ...
- Amazon EC2上搭建VPN服务器
Amazon EC2 提供了一年免费试用,Micro Instance,配置是 1G 内存,共享 CPU,和每月 15G 的流量.搭一个 VPN 服务器绰绰有余了.操作系统我选的是 Amazon Li ...
- 给Amazon ec2 增加卷(Volume)并挂载到系统
给Amazon ec2 增加卷(Volume)并挂载到系统 前言 导师让师弟把实验的网站挂到亚马逊的EC2云服务器上.师弟对linux不太熟悉.就跑过来问我.于是花了一个小时搞定.问题主要是将EC2的 ...
- Amazon EC2 的名词解释
Amazon EC2 Amazon Elastic Compute Cloud (Amazon EC2) Amazon EC2 提供以下功能: 实例:虚拟计算环境 实例预配置模板/Amazon 系 ...
- 使用Putty连接Amazon EC2 Instance
Amazon的EC2中,默认是不允许使用用户名和密码直接连接Instance的,而是通过AWS (Amazon Web Service)提供的证书.在第一次使用EC2的时候,AWS会要求你创建一个证书 ...
- SublimeText SFTP连接Amazon EC2
文章最初发表于szhshp的第三边境研究所 转载请注明 1. SublimeText SFTP连接Amazon EC2 Sublime Text 3 正式版发布了,全平台IDE果断都换了. 今天终于有 ...
- 亚马逊 AWS ip反向解析:Configurable Reverse DNS for Amazon EC2’s Elastic IP Addresses
I’d like to call your attention to a new feature that we rolled out earlier this month. You can now ...
随机推荐
- 关于新一代Android的一切Android L (2014-07-04)
谷歌在今年的I/O大会上一改曾经的传统,由发布新版Android改为发布Android L的开发者预览版本,而其正式版本将会在今年秋天面世,这种方式将会方便开发者在正式版发布之前尽早对自己应用进行优化 ...
- Python学习(七)面向对象 ——类和实例
Python 面向对象 —— 类和实例 类 虽然 Python 是解释性语言,但是它是面向对象的,能够进行对象编程.至于何为面向对象,在此就不详说了.面向对象程序设计本身就很值得深入学习,如要了解,请 ...
- eclipse 中添加自定义 classpath 的方法,以及 javac 和 java 的一些使用细节
目标: 将 ~/java 加入classpath eclipse: 右键选中 Project, Properties, Java Build Path, Libraries, Add External ...
- vue中的css作用域、vue中的scoped坑点
一.css作用域 之前一直很困扰css的作用域问题,即使是模块化编程下,在对应的模块的js中import css进来,这个css仍然是全局的.导致在css中需要加上对应模块的html的id/class ...
- SpringSecurity实现后台管理员登录(二)
需求:login.ftl页面中登录成功后进入index.ftl页面中 一.pom.xml中添加json转换相关的包 <dependency> <groupId>com.fast ...
- Thinkphp学习笔记7-输入变量
在Web开发过程中,我们经常需要获取系统变量或者用户提交的数据,这些变量数据错综复杂,而且一不小心就容易引起安全隐患,但是如果利用好ThinkPHP提供的变量获取功能,就可以轻松的获取和驾驭变量了. ...
- (转)Session URL重写
Session URL重写 发表于 2012 年 3 月 5 日 Session URL重写,保证在客户端禁用或不支持COOKIE时,仍然可以使用Session session机制.session机制 ...
- 改善C#程序的建议2:C#中dynamic的正确用法
dynamic是FrameWork4.0的新特性.dynamic的出现让C#具有了弱语言类型的特性.编译器在编译的时候不再对类型进行检查,编译期默认dynamic对象支持你想要的任何特性.比如,即使你 ...
- [MSP430]入门之中的一个 总体认识
这是由TI公司推出的一款比較单片机, 相对stm32来说简单些, 由于它是16位的, 所以我们在学习中可能也会像51一样, 直接操纵寄存器. TI设计这款单片机的初衷是, 让它用于低功耗的嵌入式设 ...
- HDU 5336 XYZ and Drops
Problem Description XYZ is playing an interesting game called "drops". It is played on a r ...