aufs of Linux File System
The full name of aufs is advanced multi-layered unification filesystem. Its main function is to merge the contents of multiple folders together to provide a unified view. It is mainly used in livecd of various Linux distributions and in docker to organize image s.
It is said that because the aufs code is not maintainable (code readability and a ...
Posted by andylyon87 on Sun, 07 Apr 2019 16:48:30 -0700
Vagrant multi-machine multi-node virtual cluster
The first two articles share the homestead + vagrant configuration, but they are single-point. Now let's study the configuration of multi-node cluster together.
Multi-node Cluster Configuration/Creation
Install VirtualBox
Install Vagrant
Download Box
These previous articles have explanations and download links, which are not repeate ...
Posted by step on Wed, 03 Apr 2019 16:06:31 -0700
The Difference between Docker's save and export commands
ABSTRACT: Recently, during the migration of Docker's mirror image, I met some problems. I don't know how to solve them. I found this good article and solved my problems. It was translated. http://tuhrig.de/difference-between-save-and-export-in-docker/
I've been playing with Docker recently, a virtual technology for application containers and ...
Posted by dw89 on Sat, 30 Mar 2019 07:54:29 -0700
Docke implements cross-host communication using Open vSwitch
- xxong personal verification
At present, flannel, weave, Pipework, Open vSwitch and so on are the main solutions in the market.
Open vSwitch is relatively simple, mature and powerful, so it is very suitable as a tool to s ...
Posted by wei on Fri, 29 Mar 2019 19:39:28 -0700
Build Open Source IVRE through Docker
Build Open Source IVRE through Docker
Time 2016-01-06 11:13:01 FreeBuf
Original text http://www.freebuf.com/tools/92179.html
Theme Docker Linux commandsOpen Source
* Originator: Hack Liu
1 Introduction
1.1 Purpose of preparation
This article mainly introduces the installation, deployment and configuration of the o ...
Posted by dkruythoff on Wed, 27 Mar 2019 17:45:30 -0700
JAVA project released to docker
Step 1: Open docker remote API port
My file is centos7 system. The file to be modified is / usr / lib / system D / system / docker. service file.
vim /usr/lib/systemd/system/docker.service
The following is my configuration file, which needs to be added in line 13-17: ExecStart=/usr/bin/dockerd followed by - H tcp://0.0.0:2375-H unix://var/run/ ...
Posted by nelsok on Tue, 26 Mar 2019 04:27:28 -0700
Using Docker to Build Hadoop Distributed Cluster in Linux Environment
First install Docker:
$ sudo apt-get install apt-transport-https
$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
$ sudo bash -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
$ sudo apt-get update
$ sudo apt-get install lxc-do ...
Posted by escabiz on Sun, 24 Mar 2019 18:00:29 -0700
How to use fleet and fleetctl to manage CoreOS cluster
Provide: ZStack Cloud Computing
Series of tutorials
This tutorial is for CoreOS Upper Finger Guide The third of nine articles in the series.
Content introduction
CoreOS provides us with a Docker container management platform across multi-server environments, and fleet services can significantly simplify the management of the entire clus ...
Posted by james182 on Sat, 23 Mar 2019 04:09:57 -0700
Introduction: Common Docker commands and explanations
I. Container Life Cycle Management
1. create
Command Interpretation: Create a container, but do not start. The container name is mynginx
leoheng-MacBook-Pro:~ leo$ docker create --name mynginx nginx:latest
Unable to find image 'nginx:latest' locally
latest: Pulling from library/nginx
a5a6f2f73cd8: Pull complete
1ba02017c4b2: Pull complet ...
Posted by magnetica on Wed, 20 Mar 2019 10:33:28 -0700
Sesame HTTP: Selenium+Chrome on entOS without GUI
Are the daily collections of your little buddies torn to death by various clicks in JavaScript? It's hard to find a Selenium+Chrome to solve the problem!
But there's another fact that servers don't have GUI s.··
OK Let's face the music! Never be overwhelmed by such a small difficulty.·····&midd ...
Posted by cal_biker on Wed, 13 Feb 2019 14:15:18 -0800