user1498944
user1498944

Reputation: 51

Free Amazon AWS/RDS Instance

I have hosted a server app on AWS and RDS for relational DB. Though I opted for free account, RDS is being charged at $0.0025 per hour amounting to $18 a month.

I read some documentation but still not able to figure this out. Is this the way it is or is there a way to get free RDS account for testing purpose?

Thanks OpenTube

Upvotes: 3

Views: 7978

Answers (7)

Jorge
Jorge

Reputation: 46

I recently provisioned an AWS RDS instance. I thought I was within my free tier limit and I kept being charged for "Amazon Relational Database Service Provisioned Storage". It was always a few cents.

enter image description here

I had taken between 15 and 20 GB of storage when I set it up.

I contacted support and they told me that, in order to be within the RDS free tier, I have to take no more than 9Gb storage when provisioning the instance. But after the backup is made, it will use up an additional 9Gb, so the total storage should be no more than 20Gb.

enter image description here

So now, when I provisioned a new instance of 9 GB, I am within the limits of the free tier.

enter image description here

Also always check if in the region of choice they have free tier resources.

Upvotes: 1

greensuisse
greensuisse

Reputation: 1827

The important thing is not to choose RDS Aurora. If you choose MySql or Postgres, the webpage will show template Free Tier. When select it, all default configs will be good for free tier.

Some screenshots: https://www.golery.com/pencil/zr

Upvotes: 0

roundar
roundar

Reputation: 1713

I've just started setting this up and I realized quickly that it was allowing me to make selections that couldn't possibly be free. When setting up your free teir instance, look on the left hand side of the screen for

Your current selection is eligible for the free tier.

Once you select something like "Multi-AZ Deployment" or use any DB Instance Class other than "db.t2.micro" it will slyly change the left column display:

The following selections disqualify the instance from being eligible for the free tier:

Multi-AZ Deployment

Just be careful in your selections and usage to maintain the free teir.

Upvotes: 7

Shuyi Zheng
Shuyi Zheng

Reputation: 11

you should use t1.micro. It is at the bottom of the options.

Upvotes: 1

YABADABADOU
YABADABADOU

Reputation: 1328

As of October 1st 2012, AWS free usage tier now includes Amazon RDS. The free tier applies to Single-AZ deployments of MySQL, Oracle “Bring-Your-Own-License (BYOL)” licensing model and SQL Server Express Edition.

See this link from Amazon for more details: https://aws.amazon.com/about-aws/whats-new/2012/10/01/amazon-rds-aws-free-tier/

Upvotes: 1

Doobi
Doobi

Reputation: 4842

Your simplest option is to install the database on your instance.

Alternatively you could look at using a hosted MySQL service provided like http://xeround.com/, or http://www.cleardb.com/, both have limited but free options.

Upvotes: 2

David Levesque
David Levesque

Reputation: 22441

What type of database are you running ? The free tier only applies to SQL Server Micro DB Instance:

750 hours of Amazon RDS for SQL Server Micro DB Instance usage (running SQL Server Express Edition in a single Availability Zone)

See http://aws.amazon.com/free/

There is also a 60 day free trial for MySQL and Oracle:

See http://aws.amazon.com/rds/free-trial/

Upvotes: 4

Related Questions