Tutorial on upgrading, installing and configuring supervisor on centos6.5

Tutorial on upgrading, installing and configuring supervisor on centos6.5

Supervisor Introduction

Supervisor is a client/server service developed in Python. It is a process management tool for Linux/Unix systems and does not support Windows systems. It can easily monitor, start, stop, and restart one or more processes. When a process managed by Supervisor is killed accidentally, supervisor will automatically restart it after detecting the process death, which makes it very convenient to automatically restore the process without having to write shell scripts to control it.

Because I want to use it to manage multiple PHP processes to perform tasks, configuring multiple subprocesses in the default version does not work

The default version of Supervisor is 2.1.9, which seems to have problems running multiple subprocesses. The latest version of Supervisor 4.1 requires a higher version of Python, so the following solution is used:

Install pip first

yum install python-pip

Then use pip to install version 3.1 of supervisor

pip install supervisor==3.1.3

Generate configuration files

easy_install supervisor==3.1.3

Configuration Files

/etc/supervisord.conf

[program:php_imap_daishou]
command=/usr/bin/php /usr/local/sinamail/tools/new/othermail/cli.php entresign
process_name=%(program_name)s_%(process_num)02d
numprocs=10
user=root 

Summarize

The above is the tutorial on upgrading, installing and configuring Supervisor in CentOS 6.5 that I introduced to you. I hope it will be helpful to you!

You may also be interested in:
  • Building .NET Core 2.0 + Nginx + Supervisor environment under Centos7 system
  • Detailed tutorial on using supervisor in centos7
  • Installation, configuration and use of process daemon supervisor in Linux
  • Detailed explanation of Supervisor installation and configuration (Linux/Unix process management tool)
  • Installation and use tutorial of Python process management tool supervisor
  • Installation and configuration of Supervisor process monitoring management tool under Mac

<<:  Vue implements student management function

>>:  Detailed explanation of MySQL subqueries (nested queries), join tables, and combined queries

Recommend

...

What is ZFS? Reasons to use ZFS and its features

History of ZFS The Z File System (ZFS) was develo...

Quickly learn MySQL basics

Table of contents Understanding SQL Understanding...

Usage of MySQL time difference functions TIMESTAMPDIFF and DATEDIFF

Usage of time difference functions TIMESTAMPDIFF ...

vue-cropper component realizes image cutting and uploading

This article shares the specific code of the vue-...

PyTorch development environment installation tutorial under Windows

Anaconda Installation Anaconda is a software pack...

Getting Started Tutorial on Animating SVG Path Strokes Using CSS3

Without relying on JavaScript, pure CSS is used t...

WeChat Mini Program QR Code Generation Tool weapp-qrcode Detailed Explanation

WeChat Mini Program - QR Code Generator Download:...

Vue implements the product tab of the product details page function

This article example shares the specific code of ...

Implementation of Docker deployment of SQL Server 2019 Always On cluster

Table of contents Docker deployment Always on clu...

Detailed analysis of MySQL master-slave delay phenomenon and principle

1. Phenomenon In the early morning, an index was ...

Two usages of iFrame tags in HTML

I have been working on a project recently - Budou...

5 super useful open source Docker tools highly recommended

Introduction The Docker community has created man...

MySQL quickly inserts 100 million test data

Table of contents 1. Create a table 1.1 Create te...