Redis advanced application

1, Master slave replication Quick start practice Based on Redis, a Master-Slave architecture is designed, including one Master and two slaves. The Master is responsible for reading and writing Redis and synchronizing data to the Slave. The Slave is only responsible for reading. The steps are as follows: First, duplicate redis01, for example: ...

Posted by rhunter007 on Mon, 11 Oct 2021 17:12:38 -0700

docke - docker introduction and installation

1, Docker introduction 1. Introduction Docker is an open source application container engine and a lightweight container technology. Open source based on Go language and Apache 2.0 protocol. Docker allows developers to package their applications and dependency packages into a lightweight and portable container, and then publish them to an ...

Posted by tvaughan77 on Sat, 09 Oct 2021 06:23:30 -0700

Installation of Mysql Ncaos Nginx image

Install MySql database 1. Search the mysql image on hub.docker.com 2. Pull the specified version of mysql. You can also specify the pull version, for example: docker pull mysql:8.0.23 3. Check mysql image docker images 4. Start and run mysql image (docker run is used to start a container) sudo docker run -p 3306:3306 --name mysql \ -v ...

Posted by creet0n on Thu, 07 Oct 2021 16:42:21 -0700

Kubernetes (k8s) Ingress principle

1, Overview Kubernetes exposes services in three ways: loadlander Service, NodePort Service and progress. The official website defines ingress as a collection of rules for managing external services to services in the cluster. Generally speaking, it defines rules to allow requests to enter the cluster to be forwarded to the correspondin ...

Posted by sheen4him on Thu, 07 Oct 2021 11:28:51 -0700

Deploy my website to the container - it solves the pain point of every website migration

Deploy my website into the container - solves the pain point of each website migration 1. Requirements Ultimately, money is still insufficient, which leads me to often change servers to participate in new user discounts. In the first year, the server price is still very affordable, but this requires me to constantly migrate the website ...

Posted by creative on Mon, 04 Oct 2021 14:02:28 -0700

k8s basic knowledge learning supporting dark horse

Kubernetes 1. Introduction to kubernetes 1.1 evolution of application deployment mode There are three main periods in the way of deploying applications: Traditional deployment: in the early days of the Internet, applications will be deployed directly on physical machines Advantages: simple, without the participation of other techno ...

Posted by dupreelove on Mon, 04 Oct 2021 13:49:29 -0700

Guangdong Mobile HM201 TV box (Nanchuan license plate) brushes the route beside armian + docker + openwrt

Guangdong Mobile HM201 TV box (Nanchuan license plate) brushes the route beside armian + docker + openwrt Box information: S905L, 1G+4G, 100m network port, USB2.0x2, 2.4G WiFi (not driven under armbian), no Bluetooth Input under the built-in Android system terminal: cat /proc/device-tree/amlogic-dt-id Results obtained: gxl_211_1g 1, U S ...

Posted by MP145 on Mon, 04 Oct 2021 11:23:06 -0700

Docker - learning notes

data docker.org.cn Know about information Docker - from entry to practice docs docker docs nvivida docker Basic concepts of Image, Container and Rigistry Image: Docker Image is equivalent to a root file system. In addition to providing programs, libraries, resources, configuration files, etc. required by the container runtime, it also in ...

Posted by Betty_S on Fri, 01 Oct 2021 17:04:16 -0700

Introduction to Docker Basics

reference resources [crazy God talking about Java] Docker's latest super detailed tutorial is easy to understand preface Take notes and review later Docker installation Basic composition of Docker Image: The Docker image is like a template, which can be used to create container services. The tomcat image - > Run - > tomacat01 con ...

Posted by TodManPlaa on Fri, 01 Oct 2021 11:42:17 -0700

Docker technology practice - 02

Docker image operation practice 1. Download Image -- docker pull image name docker pull hello-world 2. View the image file docker images [root@localhost docker]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE hello-world latest feb5d9fea6a5 7 days ago 13.3kB 3. View image details ...

Posted by Garcia on Fri, 01 Oct 2021 11:14:32 -0700