hexo deployed to centos remote server

Key paired to local and server Prerequisite: Server has git tools and nginx server installed, git tools locally installed, hexo configured Generate Local Key The local terminal runs the command ssh-keygen-t RSA and returns continuously, generating a public key to store in C...In the / user/.ssh fold ...

Posted by xjake88x on Sun, 23 Feb 2020 03:23:50 +0100

Dockerfile Common Instructions Details & Mirror Cache Features

Introduction to Dockerfile Dockerfile is the configuration file used in Docker to define the mirroring automation build process.In the Dockerfile, there are commands and other operations that need to be performed during the construction of the image.Dockerfile can make the process of making a given Docker image clearer and clearer. Because it ...

Posted by AndrewJ1313 on Wed, 19 Feb 2020 20:03:56 +0100

Pod Resource Management for K8s and Creation of Harbor Private Mirror Warehouse (with mirror pull operation, with troubleshooting in the middle)

pod is the smallest unit of k8s management There are multiple containers in a pod and only one in a real production environment Characteristic: 1. Minimum Deployment Unit2. A collection of containers3. A container in a Pod shares a network command space4.Pod is transient Pod container classification: 1:infrastructure container base conta ...

Posted by mhalloran on Sun, 16 Feb 2020 00:15:40 +0100

Deployment and use of docker (12) harbor

Harbor is an enterprise level Registry server for storing and distributing Docker images. The image storage harbor uses the official docker registry(v2 named distribution) service to complete. On the basis of docker distribution, harbor adds some functions of security, access control and management to m ...

Posted by Peter on Fri, 14 Feb 2020 10:53:23 +0100

Large website architecture - million PV

brief introduction PV is the number of clicks, which is usually an important indicator to measure a network news channel or website or even a network news. To some extent, PV has become the most important measure for investors to measure the performance of commercial websites. PV is a visitor in 24 hours to see several pages of the site. Cas ...

Posted by GKWelding on Mon, 10 Feb 2020 12:23:51 +0100

Installation of Flannel network plug-in of K8S

1, The role of flannel 1. The main function of CNI network plug-in is to realize POD resources can be trusted across hosts #test-nodes1 host cannot ping the pod container of test-nodes2 host [root@test-nodes1 ~]# kubectl get pods -o wide NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NOD ...

Posted by tlenker09 on Tue, 04 Feb 2020 17:54:28 +0100

Ubuntu 16.04 install nginx tutorial use nginx+nginx-rtmp-module+ffmpeg to build streaming media server note use ffmpeg command to push existing files

brief introduction The function of RTMP Streamer in streaming media system can be shown in the following figure. First, the video data is sent to the streaming media Server (Server, such as FMS, Red5, Wowza, etc.) in the form of RTMP, and then the client (generally Flash Player) can watch the real-tim ...

Posted by lol on Sun, 02 Feb 2020 09:59:07 +0100

Basic knowledge of ansible automatic operation and maintenance and cloud service

ansible is relatively simple. playbook is used to implement more complex tasks, while Roles is used to implement more complex tasks. ansible uses modular development, which is equivalent to a collection of command parameters. https://baike.baidu.com/item/%E4%BA%91%E6%9C%8D%E5%8A%A1/7843499?fr=aladdin Se ...

Posted by hanhao on Thu, 30 Jan 2020 05:07:19 +0100

Ansible automation deployment detailed tutorial

1, Ansible automatic deployment K8S cluster 1.1 introduction to ansible Ansible is an it automation tool. It can configure systems, deploy software, and coordinate more advanced IT tasks, such as continuous deployment and rolling update. Ansible is suitable for managing enterprise IT infrastructure ...

Posted by m@ndio on Wed, 22 Jan 2020 08:09:27 +0100

Introduction to the installation of nginx and nginx configuration of Centos7 yum source

Introduction to the installation of nginx and nginx configuration of Centos7 yum source (1) Installation 1.1 add Nginx repository yum install epel-release 1.2 start to install nginx yum install nginx In the middle of the way, these two commands will prompt you whether to continue or not. You o ...

Posted by linus on Mon, 20 Jan 2020 11:51:17 +0100