Ingress unified access portal (ingress nginx)
The main purpose of this practice is to unify the entry, no longer expose the port through LoadBalancer and other ways, but use the reverse proxy load balancing function provided by Ingress as our only entry.
kubernetes version is 1.16.0
Deploying tomcat
Deploy Tomcat but only allow intranet access. ...
Posted by rgpayne on Wed, 22 Jan 2020 07:16:20 -0800
Operation and maintenance | Elastic Stack ELK installation and deployment
Preface
ELK is the abbreviation of three kinds of software, which are composed of Elasticsearch, Logstash and Kibana. In the process of development, there are new members, Beats, which form Elastic Stack. So, ELK is the old name, and Elastic Stack is the new name.
The entire Elastic Stack technology ...
Posted by deezerd on Tue, 21 Jan 2020 08:57:35 -0800
Keepalived hot standby, Keepalived+LVS, HAProxy server
Any software you just need to remember what it does and how it works. You don't need to memorize commands, but you still need to know the basics
Keepalived overview
How to solve the single point failure of scheduler?
Keepalived is implemented as a highly available cluster
Keepalived was originally d ...
Posted by ben2005 on Tue, 21 Jan 2020 00:50:09 -0800
Introduction to cluster and LVS, LVS-NAT cluster, LVS-DR cluster
1, What is cluster
A group of computers interconnected by a high-speed network and managed in a single system model
Say a lot of servers come together to provide the same service. In the client, it looks like there is only one server
Relatively high benefits in terms of performance, reliability and f ...
Posted by monkeypaw201 on Sun, 19 Jan 2020 05:06:06 -0800
Super detailed process of building Haproxy cluster and highly available Haproxy cluster!
Super detailed process of building Haproxy cluster and highly available Haproxy cluster!
1, What is Haproxy?
Previous blogs have shown how LVS load balancers work. Today's haproxy is better than LVS. LVS does not support regular expression processing at work, and the implementation of LVS for some l ...
Posted by iainr on Sat, 18 Jan 2020 05:05:38 -0800
On the soul of Docker
1. Operation of docker common commands
docker pull image
docker run creates a container based on a certain image
-d. background operation
--Name specifies the name of the container to create
-p map the port of the container to the port of the host
docker exec -it enters a container
docker rmi de ...
Posted by rklapwijk on Fri, 17 Jan 2020 01:01:40 -0800
LVS load balancing - DR mode
LVS load balancing - DR mode
1: Definition of DR mode
Direct routing
Referred to as DR mode, the semi open network structure is adopted, which is similar to the structure type of TUN mode, but each node is not scattered in different places, but is located in the same physical network with the ...
Posted by gelwa on Thu, 16 Jan 2020 23:22:10 -0800
linux redhat6 Oracle11g rac +lvm +asm installation process summary experience
linux redhat6 Oracle11g rac +lvm +asm installation process summary experience
Installation environment
Main operating system: windows 10
Virtual machine VMware 15: Two Red Hat Enterprise linux 6.10
Package: Oracle Database software: Oracle11gR2
Cluster software: Oracle grid infrastructure 11gR2(11.2. ...
Posted by Heywood on Thu, 16 Jan 2020 01:37:19 -0800
Variables in Shell
1. System variable
1. Common system variables
$HOME, $PWD, $SHELL, $USER, etc
2. Case practice
(1) View the value of the system variable
[zj@hadoop101 datas]$ echo $HOME
/home/zj
(2) Display all variables in the current Shell: set
[zj@hadoop101 datas]$ set
BASH=/bin/bash
BASH_ALIASES=()
BA ...
Posted by derekm on Wed, 15 Jan 2020 00:00:49 -0800
The use of VIM compiler and the basis of shell programming under Linux
Installation and use of VIM compiler
vim editor installation
In CentOS, execute: yum -y install vim
Common mode
h: Move one character left
j: Move down one line
k: Move up one line
l: One character to the right
PageDown (or Ctrl+F): next screen
PageUp (or Ctrl+B): flip up one screen
...
Posted by gravedig2 on Tue, 14 Jan 2020 22:50:03 -0800