Preparation
Overview
The databases in this lab can take some time to create, by creating them all at the start of the lab some time can be saved. For a bit of variety we’ll create various different database types.
Create an RDS MySQL x86-64 instance for Lab 1
Go to the RDS Console
and create a MySQL Database on the free tier:
- Click Create Database
- Select Easy create
- Select MySQL as the engine type
- Select Free Tier (instance type db.t3.micro)
- Enter a database ID (e.g.
mysql-lab1
) - Select Auto generate a password
- Leave everything else at defaults and click create database. Your configuration should look like the image below.
NOTE: It will take a few minutes to create the database and for it to become available, while its processing you can start to create the next database.

Create an RDS PostgreSQL instance on x86-64 for Lab 2
Go to the RDS Console
and create a PostgreSQL database on the free tier:
- Click Create Database
- Select Easy create
- Select PostgreSQL as the engine type
- Select Free Tier (Instance type db.t3.micro)
- Enter a database ID (e.g.
postgresql-lab2
) - If the master username is set to Master, it must be changed to something else (e.g. myuser)
- Select Auto generate a password
- Leave everything else at defaults and click create database. Your configuration should look like the image below.

Create an Amazon Aurora instance for Lab 3
- Click Create Database
- Select Standard create
- Select Amazon Aurora as the engine type
- Choose Amazon Aurora MySQL-Compatible Edition
- For the engine version, this can remain as the default selected version. In the image below this is Aurora (MySQL 5.7) 2.10.2
- Choose the Dev/Test template. Your configuration should look like the image below

- Enter a database identifier (e.g.
aurora-lab3
) - Select Auto generate a password
- In the instance configuration, select the radio button for Burstable classes (includes T classes)
- Select db.t3.small as the instance type

- Leave all other settings as default
- Click Create Database
It will take a few minutes to create the database and for it to become available, continue to create the DB for lab 4 in the meantime.
Create a MariaDB instance for Lab 4
From the Amazon RDS console:
- Click Create Database
- Select Easy Create
- Choose MariaDB as the engine type
- Select the radio button for Free tier
- Enter a db instance identifier (e.g.
mariadb-lab4
) - Select db.t3.micro as the instance type
- Choose Auto Generate a password
- Leave everything else at defaults
- Click Create Database

All 4 databases should now be created or at least in the process of creating. Now you can move on to the labs themselves.