Discovery and automatic update of docker container service based on consumer (principle + deployment)

Preface In the previous article, I have described some contents of docker's entry level. This article begins to explain other contents of docker in depth. First, it will talk about the principle and practical operation of the discovery and automatic update part of docker container service. Talk about the concept and advantages (just look at t ...

Posted by php_gromnie on Fri, 24 Apr 2020 04:41:02 -0700

Apache Kafka Study Notes

quick get start install Docker installation single Kafka docker pull wurstmeister/zookeeper docker pull wurstmeister/kafka docker run -d --name zookeeper -p 2181:2181 wurstmeister/zookeeper docker run -d --name kafka -p 9092:9092 -e KAFKA_BROKER_ID=0 -e KAFKA_ZOOKEEPER_CONNECT=Host computer IP:2181 -e KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://127 ...

Posted by ghost007 on Fri, 24 Apr 2020 00:00:49 -0700

prometheus installation and configuration

1, Binary package installation We can go to Prometheus binary installation package Download page Download the corresponding installation package according to your own operating system. Let's take Amazon Linux 2 as a demonstration. We will download the latest version v2.17.1 according to the current time. 1.1 download Prometheus Ser ...

Posted by BigToach on Thu, 23 Apr 2020 23:03:05 -0700

kubernetes uses kubeadm to install cluster production environment

kubeadm production environment deployment steps 1, Environmental description: 1,centos7 2. ntp clock consistency is required in cluster environment 3,getenforce 0 4,disable firewall 2, Host condition: | k8s-master | k8s-node1 | k8s-node1 | | -------- | -------- | -------- | | 172.16.0.160     | 172.16.0.161    | 172.16.0.162    | 172.16. ...

Posted by baconbeastnz on Thu, 23 Apr 2020 09:31:59 -0700

The introduction and use of docker compose

docker compose: a tool for docker automatic arrangement Preface In the last two articles, I played with Dockerfile again, mainly building various service images based on Dockerfile. This paper will introduce and demonstrate the concept and use of docker compose, which is an automatic choreographer tool of docker. What is docker compose? Before ...

Posted by czs on Wed, 22 Apr 2020 09:05:49 -0700

Building elastic search 7.4.1 pseudo cluster with Docker

Cluster construction helps us to understand how the cluster works, so that we can better understand the high availability, replica fault tolerance mechanism and high performance of es. Role assignment in es Master node Parameter: node.master: true Because the real master node is elected by multiple nodes with master node qualification. Therefo ...

Posted by pea_1 on Wed, 22 Apr 2020 02:28:21 -0700

MySQL installation tutorial of Docker series

MySQL installation tutorial of Docker series With the previous basic tutorial Common command operation manual of Docker series After that, this blog records a mysql installation tutorial mysql image query command docker search mysql Several key parameters are explained as follows: INDEX docker.io is the official website of docker NAME the NA ...

Posted by Chetan on Tue, 21 Apr 2020 08:48:24 -0700

Minio related configuration and problem record

First of all, Minio has written clearly and in Chinese on its website. https://docs.min.io/cn/ In the project, the OSS function needs to be replaced and implemented. The code corresponding to the original public cloud implementation has been encapsulated into a tool class, and the factory method mode is adopted. As long as the mini interface a ...

Posted by friedice on Mon, 20 Apr 2020 03:58:05 -0700

windows springboot+docker development environment and hello word

1. Download and install docker toolbox Download address: http://mirrors.aliyun.com/docker-toolbox/windows/docker-toolbox/ docker toolbox is a tool set, which mainly includes the following contents: Docker CLI client, used to run the docker engine to create images and containers Docker Machine. Allows you to run docker engine commands on ...

Posted by halm1985 on Fri, 17 Apr 2020 04:56:21 -0700

(closing) Python Framework FastAPI: A better API framework than Flask and Tornada

0 Preface Shared them separately the other day (Introduction) A brief analysis of the Python web framework FastAPI - an API framework with higher performance than Flask and Tornada and (Advanced) Python web Framework FastAPI - A better API framework than Flask and Tornada .Today, we welcome you to the end of the FastAPI series, which is a sup ...

Posted by stezz on Thu, 16 Apr 2020 11:21:32 -0700