Enterprise operation and maintenance practice -- docker learning notes 2.Docker network knowledge
1.Docker network
docker's network function is still relatively weak. After docker is installed, three types of networks will be created automatically: bridge, host and none
1.1 bridging network
Premise:
Stop the docker compose warehouse in front docker-compose stop
Install bridge network
yum install bridge-utils -y
brctl show
docker ...
Posted by clicket on Sat, 02 Oct 2021 22:23:04 +0200
k8s build, easy to use, visual interface
k8s environment construction
Create three virtual machines to ensure that the private network uses the same network card on the same network segment
Kubedm create cluster
Preparation environment (machine execution)
Install docker
# ( sudo yum -y install docker-ce-20.10.7 docker-ce-cli-20.10.7 containerd.io-1.4.6 )
# Set docker to start ...
Posted by libinaz on Sat, 02 Oct 2021 20:18:25 +0200
Oracle11g data guard installation
1. Environmental preparation
Main librarySpare databaseoperating systemLinuxLinuxServer nameprimarynodestandbynodeIP address planning192.168.186.130192.168.186.131------------------------------------------------------Database version11.2.0.411.2.0.4db_namesfxtsfxtdb_unique_namesfxt_bfsfxt_bfinstance_namesfxtsfxt_bfservice_namesfxtsfxtDatabase ...
Posted by gameshints on Thu, 30 Sep 2021 21:47:06 +0200
shell script learning
shell script
1, What is a shell
Shell is a program written in C language. It is a bridge between users and linux kernel. It is not only a command language, but also an interpretative programming language. Use a chart to see what the shell does
**Expand knowledge:**
**kernel: Serve the software, receive user or software instructions, drive ...
Posted by dnienhaus on Tue, 28 Sep 2021 23:20:39 +0200
Program management and file processing under Linux
1 ps/top [[monitor progress]
ps -ef
Display information:
F S UID PID PPID C PRI NI ADDR SZ WCHAN TTY TIME CMD
0 S 500 3081 3080 0 80 0 - 1173 wait pts/0 00:00:00 bash
0 R 500 4463 3081 1 80 0 - 1116 - pts/0 00:00:00 ps
Parameter meaning:
UID: the user who started these processes.PID: process ID of the process.PPID: the process number ...
Posted by rline101 on Tue, 28 Sep 2021 20:57:53 +0200
VirtualBox VM space downsizing (vmdk)
Address: https://www.ebpf.top/post/shrink_vbox_vmdk_size
When using VirtualBox (VMDK mode) to manage virtual machines, we often encounter some compilation and installation scenarios (such as compiling Linux kernel), which will lead to a sharp expansion of disk space. However, after the compilation is completed, even if we delete the relevant f ...
Posted by phait on Tue, 28 Sep 2021 11:48:06 +0200
Monitoring service Zabbix
Monitoring service Zabbix
Common monitoring software
cacti is good at drawing flow diagram and architecture diagramnagios is good at complex alarm configurationzabbixprometheus
zabbix introduction
zabbix is an enterprise class open source solution that provides distributed system monitoring and network monitoring based on WEB interface
zab ...
Posted by Scott_J on Tue, 28 Sep 2021 05:05:58 +0200
linux based software installation
Software installation is a necessary function of the system. Naturally, Linux also has it. Linux installation has two ways: rmp and source code.
rpm: This is a bit like an exe file in windows. You can click Install. The file format is rmp, which is the format encapsulated by the source code, similar to exe file.Source code: software source cod ...
Posted by TheVoice on Sun, 26 Sep 2021 11:33:14 +0200
ASM disk expansion and FRA addition
Background description
System a is a dual node RAC. System a is short of disk space, so apply to Party A and add 1T disk to system a; System B is a single instance. System B has the remaining 500G disk and 800G disk DATA disk space. The archive storage location is in the DARA disk. The archive space size is set to 800G. Apply to Party A. s ...
Posted by nazariah on Sun, 26 Sep 2021 06:22:59 +0200
Linux Enterprise Operation and maintenance -- haproxy load balancing
1, Introduction to HAProxy
HAProxy provides high availability, load balancing and proxy based on TCP and HTTP applications. It supports virtual hosts. It is a free, fast and reliable solution. HAProxy is especially suitable for web sites with heavy load, which usually need session persistence or seven layer processing. HAProxy runs on the ...
Posted by erikjan on Fri, 24 Sep 2021 16:06:17 +0200