Module Apache instructions
Module Apache instructions
About Apache
Apache Is the world's number one Web server software. It can run on almost all widely used computer platforms. Because of its cross platform and security, it is one of the most popular Web server-side software. It is fast, reliable and can be expanded through ...
Posted by zamzon on Sat, 01 Feb 2020 16:56:20 +0100
State & Fault Tolerance of Apache Flink Stream API (Chapter 4)
State & Fault Tolerance
Stateful function s and operators for flow processing can store the calculation state of each Event in the flow calculation process. State computation is the construction of precise operation will not or lack of plate. Flink needs to know the status of the computing node, so ...
Posted by iamtom on Sun, 19 Jan 2020 09:10:52 +0100
Docker making image
Structure of this chapter
Layer of Docker image
Basic creation method of Dockerfile
Dockerfile creating various application containers
Layer of Docker image
Each instruction in the Dockerfile creates a new image layer
The image layer will be cached and reused
When the Dockerfile instruction is modified, the copied file changes, or the speci ...
Posted by TomNomNom on Tue, 14 Jan 2020 04:12:17 +0100
RHEL7 configure 163yum source
1. Enter / etc/yum/repos.d / directory (where the configuration files of yum software warehouse are stored)
[root@localhost ~]# cd /etc/yum.repos.d/
2. Delete the original yum source
[root@localhost yum.repos.d]# rm -f *
3. Use vim editor to create a new configuration file (the file name is optional, but the suffix must b ...
Posted by mistjulia on Sat, 04 Jan 2020 21:08:17 +0100
Kubernetes/8.Pod Controller-DaemonSet
Pod Controller-DaemonSet
This chapter gives you an explanation of the second controller, DaemonSet.You'll learn what DaemonSet is, and what it's like to do with its configuration. Finally, I've come up with the proper terms for stain and tolerance, and if you already have a foundation, you can optionally go directly to that chapter (see yourse ...
Posted by buroy on Sat, 04 Jan 2020 18:27:00 +0100
[provide feasibility Script] RHEL/CentOS 7 multi node SSH password free login
Experiment Description:
In automatic deployment, other SSH machines will often operate. However, each password authentication is very annoying, especially for a long password, so SSH password free login is essential;
When there are many machines, Ansible is often used to distribute and execute SSH password free login scripts, so that each machi ...
Posted by Ree on Thu, 02 Jan 2020 19:23:57 +0100
PostgreSQL database full database backup script
# PostgreSQL database full database backup script
#Author: old farmer (Liu Qihua)
#QQ: 46715422
#Email: 46715422@qq.com
#Wechat: 46715422
Test operating system environment: CentOS 6/7, Debian 8/9, FreeBSD 11/12
Test PostgreSQL version: 11 beta3
User name and password: postgres
The database we need to back up this time: test
Script requ ...
Posted by Thierry on Wed, 01 Jan 2020 01:06:04 +0100
python implements simple FTP
1. Development environment
server side: centos 7 python-3.6.2
Client: Windows 7 python-3.6.2 pycharm-2018
Program purpose: 1. Learn to use socketserver to achieve concurrent processing of multiple clients.
2. Learn to use struct to solve TCP sticky packages.
2. Programming
(I am a novice bird, for development specifications, interface design is ...
Posted by rushdot on Thu, 26 Dec 2019 23:40:34 +0100
Docker common command quick reference manual
Record the daily use commands of docker. This article is mainly for linux + mac operating system. It is not sure whether window is applicable. Use it carefully
<!-- more -->
1. docker process
Three common case s are docker process start, stop and restart
# Start docker
service docker start
# Shutdown docker
service docker stop
# Restart d ...
Posted by nykoelle on Mon, 09 Dec 2019 06:07:27 +0100
CA authentication server and https service
How to build an enterprise CA certificate server?
Define system environment: CentOS 7.4
ca.com 192.168.80.181 openssl*
mail.com 192.168.80.182 dovecot*
client.com 192.168.80.183 mutt*
Modify three host names:
①hostnamectl set-hostname xx.com
exit logout
Reconnect
② vi /etc/hosts
192.168.80.181 ca.com 192.168.80.182 mai ...
Posted by lewis987 on Sun, 01 Dec 2019 13:40:19 +0100