My AWS Musings

Cloud computing, EC2, RDS, SQS, S3, Java…

Entries Tagged ‘RDS’

Amazon Relational Database Service (RDS) – The Timezone Problem

The default time zone of your RDS database instance is UTC. It simply can not be changed. RDS does not give you super privileges. That is why you won’t be able to change the global time zone by simply executing: SET GLOBAL time_zone = ‘US/Pacific’;

Comments (4)

Database in cloud – Amazon RDS or MySQL on ebs?

Recently Amazon launched RDS – Relational Database Service. Before Amazon offered this service, we had a MySQL configured on an ec2 instance. We needed one more database in cloud. Which way did we go? In this article, I have tried to compare both the options.

Comments (2)

Amazon RDS in 10 mins

Amazon’s Relational Database Service (RDS) offers hosted MySQL database in the cloud. In pre RDS era, you would have fired up an instance, installed MySQL yourself on it, configured an EBS volume so that the database data storage is persistent. You would have setup a cron to snapshot your EBS volume. But RDS saves the [...]

Comments (2)