博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ansible 开源批量管理服务器工具
阅读量:5146 次
发布时间:2019-06-13

本文共 1320 字,大约阅读时间需要 4 分钟。

Ansible 是一款基于 Python 开发的自动化运维工具,可以进行配置管理、批量部署等功能。对于机器较多的场景,可以使用 Ansible 来免去重复敲命令的烦恼。

  1. 安装ansible
    yum -y install ansible
    配置文件路径/etc/ansible/ansible.cfg
    修改配置参数无需重启ansible
    修改参数:host_key_checking = False (不修改可能出现无法连接服务器的情况)
    提示:Using a SSH password instead of a key is not possible because Host Key checking is enabled and sshpass does not support this.  Please add this host's fingerprint to your known_hosts file to manage this host.
  2. 创建需要管理的服务器列表iplist
    默认的iplist为:/etc/ansible/hosts
    [group] 是组的别名,可以通过该组名对其下的所有机器进行控制
    每一行内容分别是:机器别名、机器 IP、ssh 访问时使用的用户名、ssh 访问时使用的端口、ssh 访问时使用的密码
    格式如下:
    [web]
    web_Server_0001 ansible_ssh_host=127.0.0.1 ansible_ssh_user=root ansible_ssh_port=22 ansible_ssh_pass='passwd'
    web_Server_0002 ansible_ssh_host=127.0.0.1 ansible_ssh_user=root ansible_ssh_port=22 ansible_ssh_pass='passwd'
    [db]
    db_Server_0001 ansible_ssh_host=127.0.0.1 ansible_ssh_user=root ansible_ssh_port=22 ansible_ssh_pass='passwd'
    分别创建1组web服务器,1组db服务器,若密码有特殊字符,一定要使用单引号引起来,否则可能出现无法登陆服务器
  3. 日常脚本使用介绍
    eg:显示列表下所有服务器的hostname
    ansible all -i iplist -m shell -a "hostname"
    all 代表所有组,也可指定组名
    -i 指定iplist文件
    -m 指定运行模块名称,如shell
    -a 模块下可调用的命令
    eg:给列表下服务器安装程序
    ansible all -i iplist -m yum -a "name=vim"
    命令可嵌套,可使用管道符
    eg:
    使用ansible分发文件
    ansible all -i iplist -m copy -a "src=/home/file dest=/home/"

     

转载于:https://www.cnblogs.com/Mrhuangrui/p/6698795.html

你可能感兴趣的文章
PE知识复习之PE的导入表
查看>>
HDU 2076 夹角有多大(题目已修改,注意读题)
查看>>
洛谷P3676 小清新数据结构题(动态点分治)
查看>>
九校联考-DL24凉心模拟Day2T1 锻造(forging)
查看>>
Attributes.Add用途与用法
查看>>
L2-001 紧急救援 (dijkstra+dfs回溯路径)
查看>>
javascript 无限分类
查看>>
spring IOC装配Bean(注解方式)
查看>>
[面试算法题]有序列表删除节点-leetcode学习之旅(4)
查看>>
SpringBoot系列五:SpringBoot错误处理(数据验证、处理错误页、全局异常)
查看>>
kubernetes_book
查看>>
OpenFire 的安装和配置
查看>>
侧边栏广告和回到顶部
查看>>
https://blog.csdn.net/u012106306/article/details/80760744
查看>>
海上孤独的帆
查看>>
error: more than one device and emulator 问题解决
查看>>
springmvc集成Freemarke配置的几点
查看>>
Django 学习
查看>>
Linux-socket的close和shutdown区别及应用场景
查看>>
xpath
查看>>