I am using AWS RDS database service to run mysql database service. I have read that there is no limit with Mysql in the number of databases contained in a single RDS instance. I can then use
mysql -u<username> -p<password> -h<instance.rds.amazon.com> -e "create database additional_dbname"
My question is the following : Is there a cleaner way to achieve this, using rds-cli ? I have RTM, but I couldn't find any reference to such usage.
As correctly said by tedder42 AWS RDS creates a single database at RDS creation time.
After creating AWS RDS, connect to it as client using
After successfully connecting to your rds instance you can fire all queries which you can fire on your local database.