Centos 7.6 configuring nginx reverse proxy load balancing cluster

I. Introduction to the experiment Three centos7 virtual machines are used to build a simple nginx reverse proxy load cluster, Address and function introduction of three virtual machines 192.168.2.76 nginx load balancer 192.168.2.82 web01 server 192.168.2.78 web 02 server 2. Install nginx software (the following three virtual machines should be ...

Posted by dr_overload on Mon, 02 Dec 2019 10:34:12 -0800

Centos7 installation rabbitmq installation record

I. rabbitmq usage scenario, used for time notification and logging with microservices II. rabbitmq installation erlang 1. rabbitmq is written in erlang language. Before installing rabbitmq, you need to install erlang first. Here, you use the source code of erlang for installation. The download address of erlang installation p ...

Posted by m!tCh on Wed, 20 Nov 2019 09:38:48 -0800

Ubuntu Compile Install HAprox+Keepalived+MySQL Load High Availability Architecture (combined with Docker container configuration)

System environment: Ubuntu 16.04 (Docker container) Architecture environment: Keepalived/HAproxy MASTER: 172.17.0.4 Keepalived/HAproxy BACKUP: 172.17.0.6 MySQL MASTER: 172.17.0.2 MySQL SLAVE: 172.17.0.3 HAproxy version: haproxy-2.0.8.tar.gz Keepalived version: keepalived-2.0.19.tar.gz   1. Install HAproxy (both MASTER/BACKUP) 1. Go to the offic ...

Posted by kujtim on Sun, 17 Nov 2019 05:41:06 -0800

Keeping alive + LVS + apche to achieve high available load balancing

About Keepalived Keepalived is originally designed for LVS, which is specially used to monitor the status of each service node in the cluster system. It detects the status of each service node according to the third, fourth and fifth layer switching mechanisms of the TCP/IP reference model. If a server node is abnormal, or the ...

Posted by rhodry_korb on Thu, 14 Nov 2019 07:28:12 -0800

Creating CA s and requesting certificates using OpenSSL

Introduction to OpenSSL OpenSSL is a suite of cryptographic tools that implement Secure Sockets Layer (SSL v2 / v3) and Transport Layer Security (TLS v1) network protocols and their associated encryption standards. The OpenSSL command line tool is used to use various encryption functions of the OpenSSL encryption library from shell programs. ...

Posted by j4mes_bond25 on Sun, 10 Nov 2019 10:45:08 -0800

Centos6 Tengine opens http2 transport protocol

1. Preface Recently, we are optimizing the visiting speed of the website and opening http2 protocol for the website. What are the advantages of this protocol? As follows: http2 is the next generation transport protocol, which will be widely used in the future, which is a trend. http2 has the feature of multiplexing, which means to access re ...

Posted by francisexpress on Sat, 09 Nov 2019 11:07:26 -0800

Centos6 Tengine enables Http2 transmission protocol

1. Preface Recently, we are optimizing the visiting speed of the website and opening http2 protocol for the website. What are the advantages of this protocol? As follows: http2 is the next generation transport protocol, which will be widely used in the future, which is a trend. http2 has the feature of multiplexing, which means to access resou ...

Posted by webbrowser on Sat, 09 Nov 2019 06:31:11 -0800

Mysql Series II: CentOS 7.4 installation of mysql5.7.28 source code

This article is the blog Mysql Series II: CentOS 7.4 install Mysql 5.7.28 source code There are many ways to install mysql. Take Centos7 as an example, you can download the compiled binary code on the official website for installation, and you can download the rpm package on the official website for installation. In this paper, we introduce th ...

Posted by damnedbee on Thu, 07 Nov 2019 02:15:38 -0800

The record of base64 encoding and decoding after des CBC encryption and decryption using openssl Library under linux c

The record of base64 encoding and decoding after des CBC encryption and decryption using openssl Library under linux c Decoding and encoding process Des CBC decryption encryption code base64 decoding group code main function Decoding and encoding process In the process, the encrypted xml documen ...

Posted by mattheww on Tue, 29 Oct 2019 07:58:43 -0700

http module of NodeJS

Article directory 1 http module 1.1 basic usage 1.1.1 module attributes 1.1.1.1 properties of HTTP request 1.1.2 module method 1.1.2.1 method of HTTP module 1.1.2.2 method of server instance 1.1.2.3 HTTP response method 1.1.3 processing GET requests 1.1.4 processing POST requests 1.2 request 1. ...

Posted by JoeF on Sat, 26 Oct 2019 20:21:27 -0700