I commonly need a simple database for things I want to do. MySQL has been my simple and free go-to tool for years. MySQL has been around for a long time, is free, and is freely supported with micro instances on AWS.
To create a MySQL instance on AWS, follow the directions provided by AWS. Notice that the database should be publicly accessible:
Publicly Accessible: Choose Yes. This will allocate an IP address for your database instance so you can directly connect to the database from your own device.
Everything else seems fairly straight forward. Once done, the dashboard will tell you that creation is in process. After a few minutes, the database will be ready, and we can test it with a client. IntelliJ, my IDE of choice, can test this for us. After entering the information provided for the hostname and then using provided credentials, we have a successful connection, and we can query away:
To create a MySQL instance on AWS, follow the directions provided by AWS. Notice that the database should be publicly accessible:
Publicly Accessible: Choose Yes. This will allocate an IP address for your database instance so you can directly connect to the database from your own device.
Everything else seems fairly straight forward. Once done, the dashboard will tell you that creation is in process. After a few minutes, the database will be ready, and we can test it with a client. IntelliJ, my IDE of choice, can test this for us. After entering the information provided for the hostname and then using provided credentials, we have a successful connection, and we can query away:
Comments
Post a Comment