Ansible是一个基于Python开发的配置管理和应用部署工具,能批量配置、部署、管理上千台主机。比如以前需要切换到每个主机上执行的一或多个操作,使用Ansible只需在固定的一台Ansible控制节点上去完成所有主机的操作
Ansible是基于模块工作的,它只是提供了一种运行框架,它本身没有完成任务的能力,真正执行操作的是Ansible的模块, 比如copy模块用于拷贝文件到远程主机上,service模块用于管理服务的启动、停止、重启等
部署简单,只需在主控端部署Ansible环境, 被控端无需做任何操作
默认使用ssh协议设备进行管理
主从集中化管理
配置简单、功能强大、扩张性强
支持API及自定义模块,可以通过pyhton轻松扩展
通过playbooks 来指定强大的配置、状态管理
对云计算平台、大数据都有很好的支持
- 管理端: 192.168.86.44 ansible
- 被管理端: 192.168.86.55
- 被管理端: 192.168.86.77
管理端安装 ansible
- yum install -y epel-release //先安装 epel 源
- yum install -y ansible
配置主机清单
- vim /etc/ansible/hosts
- [webservers] #配置组名
- 192.168.86.55 #组里包含的被管理的主机IP地址或主机名(主机名需要先修改/etc/hosts文件)
-
- [dbservers]
- 192.168.86.77
配置密钥对验证
- ssh-keygen -t rsa #一路回车,使用免密登录
- ssh-copy-id root@192.168.86.55
- ssh-copy-id root@192.168.86.77
- 命令格式:ansible <组名> -m <模块> -a <参数列表>
- 【不加-m指定模块,则默认使用command模块】
-
- ansible-doc -l #列出所有已安装的模块,按q退出
- ansible-doc -s command #-s 列出指定模块的描述信息和操作动作 【q退出】
-
- 常用参数:
- chdir:在远程主机上运行命令前提前进入目录
- creates:判断指定文件是否存在,如果存在,不执行后面的操作
- removes:判断指定文件是否存在,如果存在,执行后面的操作
ansible 192.168.86.55或192.168.86.77 -m command -a 'date'
ansible webservers或dbservers -m command -a 'date'
ansible all -m command -a 'date'
ansible all -a "chdir=/home ls ./"
ansible-docc -s shell
ansible dbservers -m shell -a 'echo 123456 | passwd --stdin test'
- ansible-doc -s cron
-
- 常用的参数:
- minute/hour/day/month/weekday:分/时/日/月/周
- job:任务计划要执行的命令
- name:任务计划的名称
- ansible webservers -m cron -a 'minute="*/1" job="/bin/echo helloworld" name="test crontab"'
- ansible webservers -a 'crontab -l'
- ansible webservers -m cron -a 'name="test crontab" state=absent' 【假如该计划任务没有取名字,name=None即可】
- ansible-doc -s user
-
- 常用的参数:
- name:用户名,必选参数
- state=present|absent:创建账号或者删除账号,present表示创建,absent表示删除
- system=yes|no:是否为系统账号
- uid:用户uid
- group:用户基本组
- shell:默认使用的shell
- move_home=yse|no:如果设置的家目录已经存在,是否将已经存在的家目录进行移动
- password:用户的密码,建议使用加密后的字符串
- comment:用户的注释信息
- remove=yes|no:当state=absent时,是否删除用户的家目录
- ansible dbservers -m user -a 'name=test2'
- ansible dbservers -m command -a 'tail /etc/passwd'
- ansible dbservers -m user -a 'name="test2" state=absent
ansible-doc -s group
ansible dbservers -m group -a 'name=mysql gid=306 system=yes'
- ansible-doc -s copy
-
- 常用的参数:
- dest:指出复制文件的目标及位置,使用绝对路径,如果是源目录,指目标也要是目录,如果目标文件己经存在会覆盖原有的内容
- src:指出源文件的路径,可以使用相对路径或绝对路径,支持直接指定目录,如果源是目录则目标也要是目录
- mode:指出复制时,目标文件的权限
- owner:指出复制时,目标文件的属主
- group:指出复制时,目标文件的属组
- content:指出复制到目标主机上的内容,不能与src一起使用
ansible dbservers -m copy -a 'src=/etc/fstab dest=/opt/fstab.bak owner=root mode=640'
ansible-doc -s file
ansible dbservers -m file -a 'owner=test group=mysql mode=644 path=/opt/fstab.bak'
ansible dbservers -m file -a 'path=/opt/fstab.link src=/opt/fstab.bak state=link'
- 创建:ansible dbservers -m file -a "path=/opt/abc.txt state=touch"
- 删除:ansible dbservers -m file -a "path=/opt/fstab.bak state=absent"
ansible-doc -s hostname
ansible dbservers -m hostname -a 'name=aaaa'
ansible-doc -s ping
ansible all -m ping
ansible-doc -s yum
- 安装:ansible dbservers -m yum -a 'name=httpd'
- 卸载:ansible dbservers -m yum -a 'name=httpd state=absent'
- ansible-doc -s service
-
- 常用的参数:
- name:被管理的服务名称
- state=started|stopped|restarted:动作包含启动关闭或者重启
- enabled=yes|no:表示是否设置该服务开机自启
- runlevel:如果设定了enabled开机自启,则要定义在哪些运行目标下自启动
ansible dbservers -a 'systemctl status httpd'
ansible dbservers -m service -a 'enabled=true name=httpd state=started'
ansible-doc -s script
- 在ansible服务器编写脚本
- vim test.sh
- #!/bin/bash
- echo "hello ansible from script" > /opt/script.txt
- chmod +x test.sh
-
- 指定dbservers组执行并查看内容
ansible-doc -s setup
ansible dbservers -m setup
ansible dbservers -m setup -a 'filter=*ipv4'
Inventory支持对主机进行分组,每个组内可以定义多个主机,每个主机都可以定义在任何一个或多个主机组内。
如果是名称类似的主机,可以使用列表的方式标识各个主机
- vim /etc/ansible/hosts
- [webservers]
- 192.168.86.44:2222 #冒号后定义远程连接端口,默认是 ssh 的 22 端口
- 192.168.86.1[2:5]
-
- [dbservers]
- db-[a:f].example.org #支持匹配 a~f
- (1)主机变量
- [webservers]
- 192.168.86.44 ansible_port=22 ansible_user=root ansible_password=abc1234
-
- (2)组变量
- [webservers:vars] #表示为 webservers 组内所有主机定义变量
- ansible_user=root
- ansible_password=abc1234
-
- [all:vars] #表示为所有组内的所有主机定义变量
- ansible_port=22
-
- (3)组嵌套
- [nginx]
- 192.168.86.44
- 192.168.86.55
- 192.168.86.66
-
- [apache]
- 192.168.86.3[0:3]
-
- [webs:children] #表示为 webs 主机组中包含了 nginx 组和 apache 组内的所有主机
- nginx
- apache