Hey developers. In this article, we are going to see how to create MySQL in database on AWS cloud. We would also check how to delete a DB instance once you are done with it. Let us see how it is done.
Prerequisites!
- Should already have an AWS account. (Create one here)
Table of Content
- MySql Database Creation: AWS Database
- Delete AWS Database Instance
- FAQ
What is AWS RDS?
Amazon Relational Database Service (RDS) is a service on AWS which provides an easy setup and manage your database on the cloud.
What's MySQL Database?
MySQL is one of the most popular and widely used relational database management systems. It was created by Oracle. It stores large datasets in a structured form. It is managed through SQL (structured query language) to perform transactions.
MySql Database Creation: MySql in AWS
For MySQL database creation on AWS, you need to go on the AWS service called RDS. With AWS RDS free tier, you could use this service for a year. For the long run, check out AWS rds pricing here. Search RDS on the top search bar inside the AWS management console. This will lead you to Amazon RDS Dashboard where you would see an orange-colored button “Create database.” Click on it and you would be led to the configuration page of your AWS database services.
Afterward, you would be shown 2 AWS database options. Select the Easy Create option as shown in the image below. Easy Create has a faster setup process, as it will fill up most of the configurations with default values. Whereas Standard Create would let you configure everything for your AWS Database instance. Such as security, backups, maintenance, etc.
Now, you would be shown multiple AWS RDS instance types. But we are here for MySQL database creation on AWS. A reminder that AWS database services are free only if you are on the AWS RDS free tier. So let’s choose MySQL in database here on the AWS setup page.
Moving on, you would be shown multiple AWS RDS instance types as seen below. Choose the “Free tier” if you want to use MySQL database free version. This will last for a year but with limited usage. Check AWS MySQL price.
Next, I will give a name to the database instance i.e., ‘programatically-DB’. Then add in your password for accessing the database. And that is all. Click on the Create database button at the bottom of the page and your MySQL database instance would get created.
Check the image below for reference.
Had you selected “Standard Create” instead of “Easy Create”, you would also have to configure AWS RDS proxy, AWS RDS backup, etc.
How to Delete AWS Database
Earlier, we performed MySQL database creation on AWS. Let’s see how we can terminate or delete the MySQL database instance on AWS. This is as simple as it gets.
Select the particular instance that you want to delete. Then click on the Actions button at the top and select Delete. That’s it.
In the same way, you can also Stop, Reboot, or Take a snapshot of your AWS database as well. Take reference from the image below:
FAQ
Yes. MySQL in database is free and open-source. However, if we use MySQL for AWS, it is only free for a limited time. You have to pay for AWS database service for long-term usage.
“While S3 is strongly consistent, its consistency is limited to single storage operations. On the other hand, RDS supports transactions that allow one to execute a series of operations while maintaining consistency and even providing an option to roll back the operations in case of the steps go wrong.” (source)
- Aurora scales faster because it can add new read replicas quickly
- Aurora scales further because extra compute nodes are cheap.
- Aurora is more durable. You always have multiple copies of your data.
- Aurora is more resilient. It has a fast recovery from failures.
- RDS supports more database engines and features than Aurora
- You can run an RDS database for a year in the free tier; there’s no free version of Aurora.
- RDS pricing is predictable. It has a fixed per-hour rate. Aurora prices can be unpredictable.
That’s all!
Hope you found the article helpful. I hope now you would have a good idea of how to create MySQL in database on AWS and also manage it. For any queries, leave a comment below.
Have a great one!
Recent Comments
Categories
- Angular
- AWS
- Backend Development
- Big Data
- Cloud
- Database
- Deployment
- DevOps
- Docker
- Frontend Development
- GitHub
- Google Cloud Platform
- Installations
- Java
- JavaScript
- Linux
- MySQL
- Networking
- NodeJS
- Operating System
- Python
- Python Flask
- Report
- Security
- Server
- SpringBoot
- Subdomain
- TypeScript
- Uncategorized
- VSCode
- Webhosting
- WordPress
Search
Recent Post
Understanding Mutex, Semaphores, and the Producer-Consumer Problem
- 13 October, 2024
- 10 min read
Process scheduling algorithm – FIFO SJF RR
- 14 September, 2024
- 8 min read
How to Implement Multithreading in C Language
- 8 September, 2024
- 9 min read