BEST SITE FOR WEB DEVELOPERS
Django. Lessons for beginners

Ua Es De

Create PostgreSQL Database


Create Database

Inside the RDS service, create a database, either by navigating to the Database section, or just click the "Create database" button:

Screenshot AWS RDS


Settings

Once you have started creating a database, you will be given some choices for the type and settings of your database.

To add a PostgreSQL database to your Django project, choose the following options:

Standard creation method:

AWS RDS Creation method

PostgreSQL engine method:

AWS RDS Engine options

Free Tier Template:

AWS RDS Templates

Name of a database, username, and password

You can choose any name, username, and password:

AWS RDS Settings

Keep the default instance configuration:

AWS RDS Instance config

Check off the storage autoscaling:

It can be a good thing to enable storage autoscaling, but for this tutorial it is not necessary.

AWS RDS Storage

Grant public access, and create a new security group:

Give the security group a name, we will call it "w3-django":

AWS RDS Connectivity

Keep default db authentications:

AWS RDS Data Base Auth

Keep default monitoring:

AWS RDS Monitoring

Click Create database:

AWS RDS Click Create

This will take a few minutes, but when it is finished, you will have a new PostgreSQL database, almost ready to run on your Django project!

In the next chapter Connect to Database you will learn how to connect your project to the database.



Comments