Ansible介绍与安装 介绍 Ansible Ansible是一款自动化运维工具,基于Python开发,集合了众多运维工具(puppet、cfengine、chef、func、fabric)的优点,实现了批量系统配置、批量程序部署、批量运行命令等功能。 Ansible是基于模块工作的,本身没有批量 ...
分类:
其他好文 时间:
2021-01-07 12:37:45
阅读次数:
0
1、首先安装一下ansible yum install ansible 2、修改一下ansible的参数以防ssh过去的时候需要首次判断yes 或者no sed -i 's/#host_key_checking = False/host_key_checking = False/g' /etc/an ...
分类:
其他好文 时间:
2021-01-07 12:10:47
阅读次数:
0
- name: 以轮询的方式等待服务同步完成 shell: "systemctl status etcd.service|grep Active" register: etcd_status until: '"running" in etcd_status.stdout' retries: 8 de ...
分类:
其他好文 时间:
2021-01-07 11:40:27
阅读次数:
0
fn consume_with_relish<F>(mut func: F) where F: FnMut() -> String { // `func` consumes its captured variables, so it cannot be run more // than once p ...
分类:
其他好文 时间:
2021-01-02 11:07:10
阅读次数:
0
一、Ansible基础概述 1.1 什么是Ansible Ansible是一个IT自动化的配置管理工具,自动化主要体现在Ansible集成了丰富模块、丰富的功能组件,可以通过一个命令完成一系列的操作。进而减少我们重复性的工作和维护成本,以提高工作效率! 1.2 Ansible 可以完成哪些功能 批量 ...
分类:
其他好文 时间:
2021-01-01 12:13:49
阅读次数:
0
一、数据库状态查询 1.1、查看进程详情 show processlist; show full processlist; 1.2、数据库连接数 当前连接数 show status like '%threads_%'; 最大连接数 show variables like '%max_connecti ...
分类:
数据库 时间:
2021-01-01 12:06:29
阅读次数:
0
概述 今天主要分享一个批量ssh免密脚本,仅供参考。 需求 管理端有多台服务器,维护几百台服务器的时候需配置ssh免密,但密码很多特殊字符,如果用expect是很难处理的,故python脚本实现。 环境准备 1、安装fabric python3环境 pip install fabric 2、准备管理 ...
分类:
其他好文 时间:
2020-12-31 12:46:55
阅读次数:
0
Global Variable Address Modifier (@address) You can assign global variables to specific addresses with the global variable address modifier. These var ...
分类:
编程语言 时间:
2020-12-24 11:33:33
阅读次数:
0
profile的使用 1、作用 使用profile可以对某一条sql性能进行分析 2、语法 mysql> show variables like '%profil%'; + + + | Variable_name | Value | + + + | have_profiling | YES | | ...
分类:
数据库 时间:
2020-12-23 11:52:30
阅读次数:
0
1、我们在生产环境中我们需要对服务器系统配置相关优化参数,以下为Centos 7系统相关常用软件安装以及系统参数配置 setenforce 0 sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config sed -i 's/ ...
分类:
系统相关 时间:
2020-12-19 13:21:26
阅读次数:
2