K8s full multi-node deployment (wirenet combat!Include troubleshooting!)

K8s Multi-node Deployment --> Load Balancing Using Nginx Service --> UI Interface Display Special note: a k8s cluster with a single master must be deployed before this experiment can beginSee my previous blog: https://blog.csdn.net/JarryZho/article/details/104193913 Environment Deployment: Related packages and documentation: Link: https ...

Added by DBHostS on Fri, 07 Feb 2020 20:01:25 +0200

Ansible Installation and Module Management

Introduction to Ansible Ansible can manage both Linux for Redhat s, Linux for Debian, and Windows hosts.The management node only connects to the remote host while executing the script, and there is no special synchronization mechanism, so exceptions such as power outages generally do not affect ansbile. Ansible is a new automated operation ...

Added by dizzy1 on Sun, 02 Feb 2020 20:37:07 +0200

Zabbix deployment, monitoring and email alarm mechanism (actual combat!)

Zabbix deployment Experimental environment: CentOS 7-2: 192.168.18.147 (monitoring end: deployment and installation zabbix) CentOS 7-3: 192.168.18.128 (monitored end) Monitoring end operation: [root@cacti ~]# systemctl stop firewalld.service #Turn off firewall function [root@cacti ~]# systemctl disable firewalld.service #Turn on and ...

Added by weaselandalf on Sat, 01 Feb 2020 17:08:14 +0200

Centos7 configures SVN server

Environmental Science Centos 7 SVN 1.7 Install SVN Shell> yum install svn -y Prepare configuration and warehouse Shell> mkdir -p /mydata/repo Shell> cd /mydata/repo/ Shell> svnadmin create erp  #Create a code base, here take erp as an example The configuration file of the code ba ...

Added by bdee1 on Mon, 20 Jan 2020 09:33:04 +0200

Install Percona Server database (in CentOS 8)

Building PXC cluster under CentOS8 This paper introduces how to build Percona Server cluster. In fact, the installation package of PXC has been bundled with Percona Server, so some details of Percona Server will be masked during installation. But sometimes you may use Percona Server alone, so this article introduces the installation of Percona ...

Added by melkara on Mon, 20 Jan 2020 08:38:37 +0200

Build personal server based on centos7: Supervisor installation and deployment

introduce How to ensure the normal operation of services is the concern of programmers. You should know that after the development of the project, the deployment to the server will be abandoned, which is not the attitude you and I should have. When the service leaves abnormally in the middle of the ni ...

Added by alext on Sun, 19 Jan 2020 16:52:22 +0200

LAMP architecture (PHP5 installation, PHP7 installation)

PHP5 Installation download wget http://cn2.php.net/distributions/php-5.6.32.tar.bz2 decompression Tip: Can't exec: No file or directory The reason is that the bzip2 package is missing yum install -y bzip2 decompression tar -jxvf php-5.6.32.tar.bz2 To configure 1. Need to be installed first xml2 yum install -y libxml2-devel 2 Install ...

Added by gigantorTRON on Sat, 18 Jan 2020 19:54:04 +0200

kubernetes Series Tutorials Offline+Online Upgrade kubernetes to 1.15

1. Overview of kubernetes upgrade Kubernetes version upgrade iteration is very fast, update every three months, many new functions iterate quickly in the new version. In order to keep consistent with the community version function, upgrade the kubernetes cluster, the community has upgraded the cluster through the kubeadm tool, the upgrade step ...

Added by Josien on Thu, 16 Jan 2020 20:02:43 +0200

Common settings for Binlog in MySQL

Get mysql image ➜ ~ docker pull mysql ➜ ~ docker images REPOSITORY TAG IMAGE ID CREATED SIZE mysql latest d435eee2caa5 3 weeks ago 456MB mysql ...

Added by unmash on Thu, 16 Jan 2020 04:07:52 +0200

Advanced operation of Linux directory and file

Bowen catalogue 1, Linux directory structure 2, Linux view file content basic command 3, Compress and decompress files 4, vi text editor 1, Linux directory structure Linux directory structure adopts tree structure, including root directory and subdirectory. 1. Root directory The location starting point of all partitions, directories, files, ...

Added by JeremyMorgan on Tue, 14 Jan 2020 09:13:29 +0200