GIT learning notes

System version: CentOS Linux release 7.6.1810ip: 192.168.3.58 git installation (1) //Dependency library installation 2. # yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel 3. # yum install gcc perl-ExtUtils-MakeMaker //Uninstall the older version of Git 4. # yum remove git //Download the new version of git source pack ...

Added by lovely on Thu, 31 Oct 2019 11:57:20 +0200

Initialize saltstack minion

Many people will struggle between saltstack and ansible. Whether saltstack is good or ansible is good. First of all, we should realize the advantages and disadvantages between them.Saltstack is based on zero mq messaging system, which can achieve high concurrency (theoretically, a salt-master can concurrently run 1000 minions in a short time), ...

Added by php_blob on Sun, 06 Oct 2019 05:54:39 +0300

Playbook's initial understanding of scripts

Catalog 1.Playbook's initial understanding of scripts 2.Playbook variable use 3.Playbook variable registration 4.Playbook conditional statements 5.Playbook Loop Statement 6.Playbook exception handling 7.Playbook tags Tags 8.Playbook Handlers 9.Playbook Include ...

Added by SilveR316 on Fri, 20 Sep 2019 03:46:57 +0300

Use of the ad-hoc command line for ansible serials

1. ansible batch operations and configuration management: In this blog, the following points of knowledge and practical experience are mainly explained for your reference: Introduction to ansible: _2. Use of common modules in ansible: _3. Use of ansible playbook: 1. Introduction to ansible: 1.1 Introduction to Ansible:_ansible is a python-base ...

Added by nemesis.2002 on Sat, 27 Jul 2019 19:10:11 +0300

Batch installation of mysql in ansible-playbook

brief introduction _install mysql-5.6.22 through ansible-playbook batch compilation and initialization, then we only need to start the database to build the database. ansible-playbook configuration idea: 1. Configure variables through main.yml in vars, mainly source code storage directory and installation directory. 2. Transfer source file ...

Added by rockroka on Wed, 22 May 2019 03:07:02 +0300

java distributed system deployment learning (6) ansible Ad-hoc and commands module

Ad-Hoc refers to a command executed temporarily under ansible and does not need to be saved. playbook is said after complex commands. When it comes to Ad-hoc, we need to mention modules. All command execution depends on pre-written modules. The default installed ansible already has many modules, such as command, raw, sh ...

Added by mikusan on Sun, 19 May 2019 07:26:17 +0300