Skip to content

Commit dbe85d3

Browse files
committed
README updated for RDS setup steps
1 parent 8edcca6 commit dbe85d3

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,23 @@ Follow the steps below to set up the project:
1717
cd rds-sample-project
1818
```
1919

20+
### Create and Configure AWS RDS
21+
22+
1. **Search for AWS RDS on the AWS Console**
23+
You can either use the search bar on the top or select from the Database services in the services tab and select AWS RDS.
24+
25+
2. **Create a Database Instance**
26+
Select the database engine you want to use, such as MySQL, PostgreSQL, or Amazon Aurora. For this practical, we'll be using the default MySQL DB.
27+
28+
3. **Configure Instance**
29+
Specify the instance type, storage, and other configuration options based on your requirements. For this example, we'll be using the default template (Free tier), user (`admin`), password, and make sure that you give an identifier and database name; otherwise, RDS will not create a database.
30+
31+
4. **Secure and Connect**
32+
Configure security options, such as VPC and firewall rules, and connect to your RDS instance. For this example, we'll give our database public access to the application interface. Also, make sure that you have added the MySQL/Aurora security rule to the security group for connectivity.
33+
34+
5. **Database Connectivity**
35+
For connectivity to the database, you need to create a connection string that consists of the database endpoint (host), name of the database, user, and password (master password).
36+
2037
### Install Dependencies
2138
Run the following command to install the required dependencies:
2239
```bash

0 commit comments

Comments
 (0)