Deploy Django Application on EC2 with PostgreSQL, S3, Domain, and SSL Setup
Muhammad Rashid
Entrepreneur | Software Developer | AWS DevOps Guru | Python, Django, Backend Developer | Tech Writer - Empowering Startups to Build Exceptional Web and Mobile Apps
Deploying a Django application on an EC2 instance can be a challenging task, especially when you need to set up additional services like PostgreSQL, S3, domain, and SSL. In this article, we’ll walk through the step-by-step process of deploying a Django application on an EC2 instance with PostgreSQL, S3, domain, and SSL setup.
You can also Watch my YouTube video Tutorial on This Topic.
We will Cover This in 4 Sections.
Section 01: PostgreSQL Setup
Amazon Relational Database Service (Amazon RDS) is a fully managed relational database service provided by Amazon Web Services (AWS). It makes it easy to set up, operate, and scale a relational database in the cloud.
To configure an Amazon Web Services (AWS) Relational Database Service (RDS) PostgreSQL database with Django, you need to follow these steps:
a. Launch an RDS instance
b. Configure Django to use the RDS instance
c. Migrate your Django models
d. Test your connection
Launch an RDS instance: Log in to your AWS account and launch an RDS instance for PostgreSQL. Select the appropriate options for your database, such as the engine version, instance type, storage, and security group.
#Replace name, Password, Host with your RDS Database name, user, password, host.
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'mydatabase',
'USER': 'mydatabaseuser',
'PASSWORD': 'mypassword',
'HOST': 'myrdshost.rds.amazonaws.com',
'PORT': '5432',
}
}
Where:
3. Migrate your Django models: After you’ve updated your settings.py file, you can run the migrate command to create the necessary tables in the RDS instance.and then start using the database in your application.
python manage.py migrate
4. Test your connection: You can now test your connection to the RDS instance by running a query in the Django shell or by visiting a page that accesses the database.
That’s it! You should now be able to use your AWS RDS PostgreSQL instance with your Django application.
Section 02: S3 Setup
Amazon S3 (Simple Storage Service) is a highly scalable, object-based cloud storage service provided by Amazon Web Services (AWS). It allows users to store and retrieve any amount of data from anywhere on the web.
To configure Amazon S3 to store your Django project’s static and media files, you can follow these steps:
pip install boto3
5. Configure your Django settings: You’ll need to update your Django settings to use S3 for storage. Add the following to your settings.py file:
AWS_ACCESS_KEY_ID = 'AWS_ACCESS_KEY_ID '
AWS_SECRET_ACCESS_KEY = 'AWS_SECRET_ACCESS_KEY'
AWS_STORAGE_BUCKET_NAME = 'AWS_STORAGE_BUCKET_NAME'
AWS_S3_SIGNATURE_NAME = 's3v4',
AWS_S3_REGION_NAME = 'AWS_S3_REGION_NAME'
AWS_S3_FILE_OVERWRITE = False
AWS_DEFAULT_ACL = None
AWS_S3_VERITY = True
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'
Finally, you will also need to add the following line at the top of your settings.py file:
6. Collect your static files: You’ll need to collect your static files into one place so that they can be uploaded to S3. You can do this using the python manage.py collectstatic command.
7. Upload your static files to S3: You can upload your static files to S3 using the python manage.py collectstatic command. This command will upload your static files to your S3 bucket.
With these steps, you should be able to configure S3 to store your Django project’s static and media files.
Section 03: Deploying Project on AWS EC2
Django is a popular web framework for building web applications in Python. It is fast, secure, and scalable, making it a great choice for businesses of all sizes. If you are looking to deploy your Django application on the cloud, Amazon Web Services (AWS) is a great option. AWS offers a range of services that can help you deploy and manage your application with ease.
In this article, we will walk you through the steps to deploy a Django application on AWS using the EC2 (Elastic Compute Cloud) service using Nginx with gunicorn.
This development server is not scalable and is not suited for production. Hence we need to configure gunicorn to get better scalability and Nginx can be used as a reverse proxy and a web server to serve static files. Let’s get started.
Step 1: Create an EC2 Instance
The first step in deploying a Django application on AWS is to create an EC2 instance. An EC2 instance is a virtual server that runs in the AWS cloud. To create an EC2 instance, you will need to log in to your AWS account and go to the EC2 dashboard.
Once you are in the EC2 dashboard, click on the “Launch Instance” button. From there, you will be prompted to select an Amazon Machine Image (AMI). An AMI is a pre-configured virtual machine image that includes the operating system, application server, and other software needed to run your application.
For this tutorial, we will use the Amazon Ubuntu Machine. After selecting the AMI, select the instance type that best suits your needs. For small to medium-sized applications, a t2.micro instance is a good choice.
Step 2: Configure Security Group
After creating the EC2 instance, you will need to configure the security group. The security group controls the incoming and outgoing traffic to and from your EC2 instance. To configure the security group, go to the “Security Groups” section of the EC2 dashboard and create a new security group.
Add the following rules to the security group to allow incoming traffic:
Step 3: Connect to your EC2 Instance
Now that you have created and configured your EC2 instance, it’s time to connect to it. To connect to your instance, you will need to use an SSH client. If you are using a Mac or Linux machine, you can use the terminal. If you are using Windows, you can use PuTTY.
Step 4: Installing python and Nginx
Let’s update the server’s package index using the command below:
sudo apt update
sudo apt install python3-pip python3-dev nginx
This will install python, pip, and Nginx server
Step 5: Creating a python virtual environment
sudo pip3 install virtualenv
sudo apt install python3-virtualenv
This will install a virtual environment package in python. Let’s create a project directory to host our Django application and create a virtual environment inside that directory.
git clone https://github.com/rashiddaha/blogprojectdrf.git
cd ~/blogprojectdrf
then
virtualenv env
A virtual environment named env will be created. Let’s activate this virtual environment:
source env/bin/activate
pip install -r requirements.txt
领英推荐
Step 6: Installing Django and gunicorn
pip install django gunicorn
This installs Django and gunicorn in our virtual environment
Step 7: Setting up our Django project
Add your IP address or domain to the ALLOWED_HOSTS variable in settings.py.
If you have any migrations to run, perform the action:
python manage.py makemigrations
python manage.py migrate
python manage.py collectstatic
Import Thing about static files, You must make sure to add few lines in your seeting.py file.
if settings.DEBUG:
urlpatterns += static(settings.MEDIA_URL, document_root = settings.MEDIA_ROOT)
urlpatterns += static(settings.STATIC_URL, document_root = settings.STATIC_URL)
4. Also, add these imports lines at the top of the blog/urls. py file.
from django.conf import settings # new
from django.conf.urls.static import static #new
5. Run this command
$ pip install whitenoise
Step 8: Configuring gunicorn
Deactivate the virtual environment by executing the command below:
deactivate
Let’s create a system socket file for gunicorn now:
sudo vim /etc/systemd/system/gunicorn.socket
Paste the contents below and save the file
[Unit]
Description=gunicorn socket
[Socket]
ListenStream=/run/gunicorn.sock
[Install]
WantedBy=sockets.target
Next, we will create a service file for gunicorn
sudo vim /etc/systemd/system/gunicorn.service
Paste the contents below inside this file:
[Unit]
Description=gunicorn daemon
Requires=gunicorn.socket
After=network.target
[Service]
User=ubuntu
Group=www-data
WorkingDirectory=/home/ubuntu/blogprojectdrf
ExecStart=/home/ubuntu/blogprojectdrf/env/bin/gunicorn \
--access-logfile - \
--workers 3 \
--bind unix:/run/gunicorn.sock \
blog.wsgi:application
[Install]
WantedBy=multi-user.target
Lets now start and enable the gunicorn socket
sudo systemctl start gunicorn.socket
sudo systemctl enable gunicorn.socket
Before You create Nginx File.
With this command, you can check if already a file exists.
cd /etc/nginx/sites-enabled
You can delete the existing default file using the command.
sudo rm -f FileName
Step 9: Configuring Nginx as a reverse proxy
Create a configuration file for Nginx using the following command
sudo vim /etc/nginx/sites-available/blog
Paste the below contents inside the file created
server {
listen 80 default_server;
server_name _;
location = /favicon.ico { access_log off; log_not_found off; }
location /static/ {
root /home/ubuntu/blogprojectdrf;
}
location / {
include proxy_params;
proxy_pass https://unix:/run/gunicorn.sock;
}
}
Activate the configuration using the following command:
sudo ln -s /etc/nginx/sites-available/blog /etc/nginx/sites-enabled/
Run this command to load a static file
$ sudo gpasswd -a www-data username
Restart nginx and allow the changes to take place.
sudo systemctl restart nginx
sudo service gunicorn restart
sudo service nginx restart
Additionally in case of errors
To check error logs
$ sudo tail -f /var/log/nginx/error.log
to check nginx working fine
$ sudo systemctl status nginx
sudo fuser -k 8000/tcpsudo lsof -t -i tcp:8000 | xargs kill -9. # to kill termianl# https://amalgjose.com/2020/02/27/gunicorn-connection-in-use-0-0-0-0-8000/
Done.
Section 04: Domain and SSL Setup:
For this Section, You can follow this Video SSL Part:
If You Want To Become a Backend Developer:
Feel free to connect with me on LinkedIn for more updates. If you enjoyed the article, don't forget to like and share it. If you have any project opportunities or wish to discuss ideas, I'm open to collaboration! Feel free to reach out and let's explore possibilities together. Thank you for taking the time to read!
Web Developer | Python | Django | JavaScript | PostgreSQL | MongoDB
5 个月Brother, I am a beginner and It was really useful. I used freedns.afraid.org for domain. Everything else, same.
Fullstack with Flutter, AlpineJS, Rust and Python | Modern languages save costs, solve problems easier and complete projects faster!
11 个月but there comes another question in mind, what is the advantage for you as backend-dev. to use EC2 or S3? i mean you know linux and can use a VPS or Dedicated server, therefore i think digital ocean or linode would be greater choice? more favorable and scalable or am i wrong?
Fullstack with Flutter, AlpineJS, Rust and Python | Modern languages save costs, solve problems easier and complete projects faster!
11 个月Muhammad i love your topics on your channel and medium articles, all of them are helpful