Python PM2

0
4كيلو بايت

With PM2, rolling restarts, monitoring, checking logs and even deploying application has never been that simple

PM2 is a production-grade process manager that makes management of background process easy. In the Python world we could compare PM2 to Supervisord, but PM2 has some nifty features you might like.

With PM2, rolling restarts, monitoring, checking logs and even deploying application has never been that simple. We really value CLI UX, so PM2 is really simple to use and master.

PM2 has 5 years of history, more than 65 million downloads and has become one of the preferred way to run Node.js in production servers. Checkout the PM2 Github

In this article, you will learn how to use the process manager PM2 to manage Python application, because yes it can also manage Python application efficiently!

INSTALLING PM2

PM2 depends on Node.js. To install Node it’s pretty straightforward:

curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs

To install Node.js on other platforms check Installing Node.js via package manager

GET PM2

Now to install PM2 type:

sudo npm install pm2 -g

To initialize PM2, just type one command:

pm2 ls

You should see a nice ASCII art giving you some of the PM2 key commands:

┌──────────┬────┬─────────┬──────┬─────┬────────┬─────────┬────────┬─────┬─────┬──────────┐
│ App name │ id │ version │ mode │ pid │ status │ restart │ uptime │ cpu │ mem │ watching │
└──────────┴────┴─────────┴──────┴─────┴────────┴─────────┴────────┴─────┴─────┴──────────┘
 Use `pm2 show <id|name>` to get more details about an app

Now that PM2 has been installed let’s start a Python application.

STARTING A PYTHON APP

Starting an application with PM2 is straightforward. It will auto discover the interpreter to run your application depending on the script extension. This can be configurable via the Ecosystem config file, as I will show you later on this article.

Let’s take this dumbly simple Python app and call it hello.py:

#!/usr/bin/python
import time

while 1:
    print("Start: %s" % time.ctime())
    time.sleep(1)

Now to start it:

pm2 start hello.py

You will then see the process started:

[PM2] Starting /home/florian/playground-python/hello.py in fork_mode (1 instance)
[PM2] Done.
┌──────────┬────┬──────┬───────┬────────┬─────────┬────────┬─────┬──────────┬──────────┐
│ App name │ id │ mode │ pid   │ status │ restart │ uptime │ cpu │ mem      │ watching │
├──────────┼────┼──────┼───────┼────────┼─────────┼────────┼─────┼──────────┼──────────┤
│ hello    │ 0  │ fork │ 76055 │ online │ 0       │ 0s     │ 2%  │ 2.8 MB   │ disabled │
└──────────┴────┴──────┴───────┴────────┴─────────┴────────┴─────┴──────────┴──────────┘
 Use `pm2 show <id|name>` to get more details about an app
البحث
الأقسام
إقرأ المزيد
Sport
Hoop Dreams (1994)
A film following the lives of two inner-city Chicago boys who struggle to become college...
بواسطة Leonard Pokrovski 2023-07-09 20:20:54 0 14كيلو بايت
Classifieds
10 "MarketPlace" platforms through which you can sell your goods in the USA
As you know, the United States is a very developed country, in which most people make purchases...
بواسطة FWhoop Xelqua 2022-11-11 12:51:26 0 24كيلو بايت
Sports and Hobbies
Exploring Hobbies for Kids and Teens: Cultivating Interests and Skills
In today’s fast-paced world, hobbies play a vital role in the development of children and...
بواسطة Dacey Rankins 2024-12-09 14:32:11 0 1كيلو بايت
Business
Situational Leadership: The Art of Agile Management for Maximum Efficiency
Situational Leadership: The Art of Agile Management for Maximum Efficiency...
بواسطة Leonard Pokrovski 2024-08-11 15:08:22 0 7كيلو بايت
Arts, Culture and Entertainment
The Last Vermeer (2020)
Claes Bang (THE SQUARE) stars as Joseph Piller in this captivating dramatic thriller set just...
بواسطة Leonard Pokrovski 2022-09-28 18:54:17 0 19كيلو بايت
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov