简介
ansible是新出现的自动化运维工具,基于Python开发,集合了众多的运维工具(puppet、chef、cfengine、func、fabric)的优点,实现了批量系统配置、批量 程序部署、批量运行命令等功能。无客户端
**工作原理:**Ansible可以简化管理员的自动化配置管理和流程控制方式。它利用推送方式对客户系统配置,这样所有的工作都可以在主服务器上完成。
运行Ansible的服务器叫做”管理节点”,通过Ansible进行管理的服务器叫做“受控节点
Ansible部署
**1.dns resolve**
(1)ansivble服务器配置域名解析
vim /etc/hosts
192.168.0.115 ansible
192.168.0.104 host1
192.168.0.105 host2
192.168.0.108 host3
192.168.0.109 host4
scp -r /etc/hosts host1:/etc/hosts
scp -r /etc/hosts host2:/etc/hosts
scp -r /etc/hosts host3:/etc/hosts
scp -r /etc/hosts host4:/etc/hosts
(2)ansivble 客户机
无需配置{IP;yum源}
**2.install ansible**
ansible: (1)yum install -y epel-release
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
(2)yum -y install ansible
rpm -ql ansible 列出所有文件
rpm -qc ansible 查看配置文件
ssh-key
免密码ssh-key的方式
ssh-keygen
ssh-copy-id IP地址 推送公钥
ansible基础
1.定义主机清单 vim /etc/ansible/hosts
添加主机域名
2.简介性输出:ansible host1 -m ping
3.简介输出:ansible host1 -m ping -o
4.know_hosts :
ansible host2 -m ping -u root -k -o 增加用户名,密码选项
去掉(yes/no)的询问
vim /etc/ssh/ssh_config
StrictHostKeyChecking no
systemctl restart sshd