Docker exec and Docker attach

Statement:This blog is welcome to forward, but please keep the original author's information!Blog address: http://blog.csdn.net/halcyonbaby Sina Weibo: @Looking for Miracles The content is my study, research and summary. If there are similarities, it is my honor! ================== Docker exec and Docker attach Whether a dev ...

Added by dhie on Sun, 19 May 2019 18:26:17 +0300

Deployment of Private Git Server in DevOps II

Serial articles The Beginning of DevOps Bullet ZeroDevOps First Bomb Project and Transaction Tracking ToolDeployment of Private Git Server in DevOps II Efficiency Communication of DevOps Third Bullet Interface Document of DevOps Fourth Bomb DevOps Fifth Bullet's Continuous Integrated Compilation Environment (Android) DevOps Fifth Bullet Continu ...

Added by avo on Sun, 19 May 2019 12:08:13 +0300

Using docker-compose to build ELK5.0

1. Building the Environment 172.19.2.51: elasticsearch+kibana+logstash+kopf 172.19.2.50: elasticsearch+nginx+filebeat 172.19.2.49: elasticsearch The access log of nginx is the content we want to collect, which is transmitted by filebeat, so neither nginx nor filebeat runs in docker. All other components run in docker, version 5 II. 172.19.2.51 ...

Added by eddiegster on Sun, 19 May 2019 06:10:20 +0300

Docker(6): Docker Swarm of Docker's Three Swordsmen

In practice, it is not enough to use a single Docker node in the production environment, so it is imperative to build a Docker cluster. However, in the face of many container cluster systems such as Kubernetes, Mesos and Swarm, how do we choose? Among them, Swarm is Docker's native, but also the simplest, easiest to learn, the ...

Added by chmpdog on Sat, 18 May 2019 13:52:01 +0300

Docker Series: Docker Network Management

Network is the most complex part of virtualization technology, and of course it is also an important part of Docker application. Docker uses Linux's Namespace for resource isolation, which includes network resources, and network isolation is achieved through Network Namespace. A network Namespace provides an independent network environment, in ...

Added by Trip1 on Sat, 18 May 2019 01:15:06 +0300

[Cluster monitoring] Using Prometheus + grafana + node-exporter

Framework principle Introduction to Prometheus Prometheus (Chinese name: Prometheus) is an open source monitoring and alarm system and time series database (TSDB) developed by SoundCloud. Prometheus has been adopted by many companies and organizations since 2012, and the project has a very active developer and user communit ...

Added by trrobnett on Thu, 16 May 2019 17:13:01 +0300

Zabbix installation and deployment in docker

1. Create docker-compose.yml file Start by creating a docker-compose.yml file that uses docker-compose to organize containers. $ mkdri /zabbix #Create a zabbix file in the root directory $ cd /zabbix $ touch docker-compose.yml #Create yml container marshalling file 2. Writing the contents of yml documents $ ll $ vim ...

Added by thebutler on Thu, 16 May 2019 06:46:27 +0300

Efficient hyperparametric tuning using Kubernetes and Helm

Author: xidianwangtao@gmail.com Abstract: This article will discuss the problems faced by Hyperparameter tuning when landing, and how to use Kubernetes+Helm to solve these problems. Problems Faced by Hyperparameter Sweep In Hyperparameter Sweep, we need different training according to many different combinations of hyperparameters. It takes ...

Added by toibs on Thu, 16 May 2019 04:14:44 +0300

Docker Chapter 8 (Docker Resource Limitation and Verification)

1. docker Resource Limitation Docker runs depending on two features in the kernel, namespaces and CGroups. By default, the container has no resource constraints, so it can exhaust all the resources allocated to the container by the kernel on the host. Therefore, in order to prevent a container from running out of all the resources of the host, ...

Added by chrishide87 on Wed, 15 May 2019 21:20:19 +0300

docker swarm modifies cluster ip

Summary The thing is, the original ip of the cluster running docker swarm on Shumei pie was 192.168.0.113, and then because of the move, the ip became 192.168.11.113. The next thing you can think of is that node and manager are definitely not connected. So I moved the node out of the cluster and rejoined it, but the join token command at that ...

Added by sargus on Wed, 15 May 2019 06:00:38 +0300