]>

RDS brings with it the promise of MySQL on a Cloud. When you sign up for Amazon RDS the AWS Management Console shows the EC2 dashboard. To understand how to use AWS then download the Getting Started Guide.
There is no GUI for Amazon RDS.
Apparently, there is no GUI yet for RDS. The only way to go about using it is through the CLI tools. Setting up the tools, however, can be quite a pain: There are no installers per se; you have to download the archive, extract it, and set up the environment manually. Here’s how I did it on my Windows XP box:
C:\>set JAVA_HOME=E:\Java\jre6
C:\>set AWS_RDS_HOME=C:\Amazon RDS\CLI
C:\>set AWS_CREDENTIAL_FILE=C:\Amazon RDS\CLI\credential-file-path.template
C:\>set PATH=%PATH%;C:\Amazon RDS\CLI
I went on to create an Extra Large database instance, with an allocated storage of 5GB:
C:\>rds-create-db-instance --engine MySQL5.1 --master-username root --master-user-password mypass --db-name WebyogTestData --db-instance-identifier webyogtestinstance --allocated-storage 5 --db-instance-class db.m1.xlarge –-header DBINSTANCE DBInstanceId Class Engine Storage Master Username Status Backup Retention DBINSTANCE webyogtestinstance db.m1.xlarge mysql5.1 5 root creating 1 SECGROUP Name Status SECGROUP default active PARAMGRP Group Name Apply Status PARAMGRP default.mysql5.1 in-sync C:\>
The rds-decribe-db-instances command displays all the running instances:
C:\>rds-describe-db-instances DBINSTANCE webyogtestinstance 2009-11-06T08:40:52.571Z db.m1.xlarge mysql5.1 5 root available webyogtestinstance.clc2ed76md1v.us-east-1.rds.amazonaws.com 3306 us-east-1d 1 SECGROUP default active PARAMGRP default.mysql5.1 in-sync C:\>
Reference and kudos to Sayan Chaliha November 06th 2009
I keep getting "The system
I keep getting "The system cannot find the path specified" when running the rds --help command. Ive setup the variables as required and checked the paths.
Any ideas?
I'm sorry you're having path
I'm sorry you're having path trouble. At least you did a few months ago. I would move into the install directories, fully qualify program calls, basically try to figure out where I mispelled something or perhaps there's a classpath issue : )