REDIR + supervisor port mapping and monitoring
I. redir
Redir can map the port of a machine to a port of the machine, supporting TCP connection.Git address: https://github.com/troglobit/...Download: git clone https://github.com/troglobit/...
Installation:
# cd /redir
yum -y install automake
yum -y install autoconf
# ./autogen.sh
# ./configure //The default directory is / usr/local. I ...
Posted by gca07738 on Sun, 10 Nov 2019 13:36:27 -0800
Supervisor process Daemons
Explain
The company's Linux server is unable to connect to the Internet, so it can only download the installation package and upload it to the server for offline installation.
Python version: Python-2.7.5
Supervisor version: supervisor-3.1.3
setuptools version: setuptools-2.0
meld3 version: meld3-1.0.2
About Supervisor
Supervisor is a set ...
Posted by binumathew on Sat, 26 Oct 2019 09:03:52 -0700
Using supervisor in Centos7
Top:pip install supervisor is recommended to install the latest version of supervisor. The highest version of yum install supervisor is 3.1.4. There are many bug s.
Name explanation
supervisor: The name of the software to be installed.Supervisord: After installing the supervisor software, supervisord is used to start the supervisor service.supe ...
Posted by R1der on Mon, 30 Sep 2019 20:47:29 -0700
Centos installs supervisor to guard the Redis process
Based on business problems, redis was added to the project for caching and queuing. But now we just install and deploy on a single server, without purchasing other services like Ali Cloud, and without building master and slave.
This leads to problems. If the redis process is accidentally blocked, then the business can not be carried out. This ...
Posted by glitch003 on Fri, 09 Aug 2019 01:33:27 -0700
Remember mpa multi-page application processing once
cause
Because domestic search engines are not friendly to single-page applications, the website of general websites is multi-page applications.
Choice
Being a website is certainly the best language in the world, PHP, which I wanted to do at first, but when I wrote this article, I was a front-end developer.Considering maintainability, other fron ...
Posted by Mikkki on Thu, 25 Jul 2019 02:21:29 -0700
JStorm Source Reading Series - 02 - Topology Assign for Topology Assign
Written in the foregoing, the author first read the source code of the framework, so there may be some misunderstanding errors or no detailed explanation. If you find errors in the reading process, you are welcome to comment and point out in the article below. The article will be updated in succession. You can pay attention to it or collect it. ...
Posted by veroaero on Mon, 08 Jul 2019 17:07:53 -0700
Brief Analysis of promise and Custom promise
Briefly introduce the usage of promise. I think if someone would like to read this article, they will know more or less about the usage of promise.
new Promise((res, rej) => {
try{
//Execute function;
res(data)
} catch(e){
rej(e);
}}).then(resCb, rejCb).then(cb);
On a whim, I went ...
Posted by ajmoore on Thu, 27 Jun 2019 10:00:44 -0700
P1314 Intelligent Quality Controller
Title Description
Xiao T, a quality supervisor, recently checked the quality of a batch of minerals.There are n minerals in this batch, numbered one by one from 1 to n, each of which has its own weight wi and value vi.The process for inspecting minerals is:
1. Given m intervals [Li,Ri];
2. Select a parameter W;
3. For an interval [Li,Ri], t ...
Posted by duvys on Mon, 17 Jun 2019 09:57:21 -0700
How to use snapman to develop a complex software development project management system in three days
snapman is a simple and powerful team collaboration software, in which information can be data, rules, or automated code; most importantly, it is a collaboration platform that can be developed, all information can be applied to all people or machines, greatly reducing the complexity of work. Software development project is the most demanding pr ...
Posted by pmg206 on Tue, 04 Jun 2019 12:31:24 -0700
Process monitoring supervisor
Supervisor, a process control system, is a C/S mode system that allows users to monitor and control the number of processes in the UNIX-LIKE operating system.Supervisor is the main process and some subprocesses are managed under Supervisor. When a subprocess exits abnormally, Supervisor handles it immediately, usually by daemon, restarting the ...
Posted by foobar on Mon, 27 May 2019 10:07:04 -0700