aster.cloud aster.cloud
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
aster.cloud aster.cloud
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
  • Engineering
  • Software Engineering

How-To: Deploy Python Flask applications using NGINX and uWSGI – Installation (Part 1 of 3)

  • aster_cloud
  • November 3, 2022
  • 3 minute read

Completed your Python Flask application? In this series we will be deploying the application on a Ubuntu 22.04 machine. Which you can provision from different Cloud Service Providers like Google Cloud, Microsoft Azure, Amazon Web Service or Digital Ocean.

To create a simple Web/Flask Python application and deploy it on an NGINX server with uWSGI and uWSGI Emperor. This is a 3-part guide. This part covers the Installation of the required packages. It will install the following


Partner with aster.cloud
for your next big idea.
Let us know here.



From our partners:

CITI.IO :: Business. Institutions. Society. Global Political Economy.
CYBERPOGO.COM :: For the Arts, Sciences, and Technology.
DADAHACKS.COM :: Parenting For The Rest Of Us.
ZEDISTA.COM :: Entertainment. Sports. Culture. Escape.
TAKUMAKU.COM :: For The Hearth And Home.
ASTER.CLOUD :: From The Cloud And Beyond.
LIWAIWAI.COM :: Intelligence, Inside and Outside.
GLOBALCLOUDPLATFORMS.COM :: For The World's Computing Needs.
FIREGULAMAN.COM :: For The Fire In The Belly Of The Coder.
ASTERCASTER.COM :: Supra Astra. Beyond The Stars.
BARTDAY.COM :: Prosperity For Everyone.

    • NGINX
    • uWSGI
    • uWSGI-Emperor
    • Flask

It will also cover creation of

    • Virtual Environment
    • Installation of python packages via the requirements.txt

Prerequisites

    • Ubuntu 22.04
    • Python 3.x has been installed. For instructions see here.

Verification

01. Verify that Python and Pip3 has been installed

$ python -V 
# or
$ python3 -V

$ pip -V
# or
$ pip3 -V

Output:

Python 3.10.6

Install Pip and Virtual environment if not yet installed. Execute the following.

$ sudo apt-get install python3-pip -y 
$ sudo apt-get install python3-venv -y

Setup the Python Virtual Environment

01. Create the python virtual environment. In this example we are creating the environment in the user’s home directory. But you can change its location depending on your preference and standards

$ cd ~/ 
$ python3 -m venv geek-venv

02. Move to the virtual environment directory

$ cd geek-venv/bin

03. Under the /bin directory activate the virtual environment using the source command. This will activate the virtual environment

$ source activate

04. Once the virtual environment is activated, use pip command to install the python packages required by your app.

(geek-venv) geek@box:~/geek-venv/bin$ pip install --upgrade pip

05. To deactivate the virtual environment.

(geek-venv) geek@box:~/python3-venv/bin$ deactivate

uWSGI Installation

01. Install the uwsgi.

$ sudo apt-get update

# Minimal Install (Recommended for Production Environment)
$ sudo apt-get install uwsgi uwsgi-plugin-python3 -y
  
# Complete Install (Generally used for Development Environment)
$ sudo apt-get install uwsgi uwsgi-extra uwsgi-plugins-all uwsgi-plugin-python3 -y

If the build-essential package is not installed, install it using the following command.

$ sudo apt-get install build-essential -y 

02. Check and verify the installation

$ uwsgi --version

Output:

Read More  Building A Mobility Dashboard With Cloud Run And Firestore

2.0.20-debian

Note: The packages uwsgi-extra and uwsgi-plugins-all are optional packages that ensures that all uwsgi packages are needed during development and might not be needed during production deployments.

03. Install the uwsgi emperor.

Note: Normally, uwsgi is enough for running single app deployment, but we use emperor mode for running single and multi-app deployments. It is a special uWSGI instance that will monitor specific events and will spawn/stop/reload instances on demand.

$ sudo apt-get install uwsgi-emperor -y

uWSGI Directories

Below are the uWSGI directories you have to be wary of, as some of them are the ones you will be troubleshooting if there are any problems.

# uWSGI file system

    ## Default root configuration
      /usr/share/uwsgi/conf/default.ini

    ## Configuration location for applications
      /etc/uwsgi/apps-available
      /etc/uwsgi/apps-enabled

# uWSGI (Emperor) file system

    ## Default root configuration
      /etc/uwsgi-emperor/emperor.ini
    
    ## Configuration location for applications
      /etc/uwsgi-emperor/vassals

    ## Logs
      /var/log/uwsgi/emperor.log

    ## Socket
      /var/run/

Nginx Installation

01. Install the nginx.

# Minimal Install (Recommended for Production Environment)
$ sudo apt-get install nginx nginx-extras

# Complete Install (Generally used For Development Environment)
$ sudo apt-get install nginx-full

02. Verify if NGINX is installed

$ nginx -V

It should show the NGINX version. Sample is below:

nginx version: nginx/1.18.0 (Ubuntu) built with OpenSSL 3.0.2 15 Mar 2022 TLS SNI support enabled configure arguments: –with-cc-opt=’-g -O …

03. To test if nginx is working.

$ curl http://localhost

It should show the NGINX page.

<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>

04. Remove the default nginx configuration and restart the NGINX service.

$ sudo rm /etc/nginx/sites-enabled/default 
$ sudo service nginx restart

Execute the following.

$ curl http://localhost

It will return an error that we will fix later.

Read More  Data Jugglers. Coding Our Way Through the Database Circus.
curl: (7) Failed to connect to localhost port 80 after 0 ms: Connection refused

For enquiries, product placements, sponsorships, and collaborations, connect with us at [email protected]. We'd love to hear from you!

Our humans need coffee too! Your support is highly appreciated, thank you!

aster_cloud

Related Topics
  • Flask
  • Python
  • Tutorials
  • Ubuntu
  • Ubuntu 22.04
  • uWSGI
You May Also Like
Penguin
View Post
  • Engineering

How To Find And Fix Broken Packages On Linux

  • September 19, 2023
View Post
  • Design
  • Engineering

4 Ways To Improve Long Term Kubernetes Capacity And Cloud Costs In Kubernetes

  • September 9, 2023
View Post
  • Engineering
  • Platforms
  • Research
  • Technology

Fast-Tracking Fusion Energy’s Arrival With AI And Accessibility

  • September 6, 2023
View Post
  • Cloud-Native
  • Computing
  • Engineering
  • Platforms

Farewell EC2-Classic, It’s Been Swell

  • September 4, 2023
View Post
  • Software Engineering
  • Technology

Introducing Code Llama, A State-Of-The-Art Large Language Model For Coding

  • August 25, 2023
View Post
  • Engineering
  • Research

Architecting The Future Of Supercomputing

  • August 23, 2023
Ruler, compass, and pen
View Post
  • Engineering
  • Gears

An Engineer’s Starter Pack – Must Have Supplies For The Trade

  • August 17, 2023
Rope
View Post
  • Computing
  • Design
  • Engineering

The Tug-Of-War Between Cloud Optimization And Cloud Innovation

  • August 17, 2023

Stay Connected!
LATEST
  • 1
    Combining AI With A Trusted Data Approach On IBM Power To Fuel Business Outcomes
    • September 21, 2023
  • 2
    Start Your Ubuntu Confidential VM With Intel® TDX On Google Cloud
    • September 20, 2023
  • Microsoft and Adobe 3
    Microsoft And Adobe Partner To Deliver Cost Savings And Business Benefits
    • September 20, 2023
  • 4
    Huawei Connect 2023: Accelerating Intelligence For Shared Success
    • September 20, 2023
  • 5
    Huawei Releases Data Center 2030, Leading Innovation and Development of New Data Centers
    • September 20, 2023
  • Penguin 6
    How To Find And Fix Broken Packages On Linux
    • September 19, 2023
  • Volkswagen 7
    Volkswagen Races Toward Next-Gen Automotive Manufacturing Leadership With Google Cloud And T-Systems
    • September 19, 2023
  • 8
    VMware Scales Multi-Cloud Security With Workforce Identity Federation
    • September 18, 2023
  • Intel Innovation 9
    Intel Innovation 2023
    • September 15, 2023
  • Private 10
    A Comeback For Private Clouds
    • September 14, 2023
about
Hello World!

We are aster.cloud. We’re created by programmers for programmers.

Our site aims to provide guides, programming tips, reviews, and interesting materials for tech people and those who want to learn in general.

We would like to hear from you.

If you have any feedback, enquiries, or sponsorship request, kindly reach out to us at:

[email protected]
Most Popular
  • 1
    Microsoft And Oracle Expand Partnership To Deliver Oracle Database Services On Oracle Cloud Infrastructure In Microsoft Azure
    • September 14, 2023
  • 2
    Real-Time Ubuntu Is Now Available In AWS Marketplace
    • September 12, 2023
  • 3
    IBM Brings Watsonx To ESPN Fantasy Football With New Waiver Grades And Trade Grades
    • September 13, 2023
  • 4
    NASA Shares Unidentified Anomalous Phenomena Independent Study Report
    • September 14, 2023
  • 5
    Introducing OpenAI Dublin
    • September 14, 2023
  • /
  • Technology
  • Tools
  • About
  • Contact Us

Input your search keywords and press Enter.