Ansible自动化配置实战
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ansible自动化配置实战相关的知识,希望对你有一定的参考价值。
Ansible自动化配置实战
1.Ansible基本概述
? Ansible是一个配置管理系统configuration management system你只需要可以使用ssh访问你的服务器或设备就行。
2. Ansible能做什么
?
? ansible可以帮助我们完成一些批量任务,或者完成一些需要经常重复的工作。
? 比如:同时在100台服务器上安装nginx服务,并在安装后启动服务。
? 比如:将某个文件一次性拷贝到100台服务器上。
? 比如:每当有新服务器加入工作环境时,你都要为新服务器部署某个服务,也就是说你需要经常重复的完成相同的工作。
? 这些场景中我们都可以使用到ansible。
?
3.Ansible软件特点
1.ansible不需要单独安装客户端,SSH相当于ansible客户端。
2.ansible不需要启动任何服务,仅需安装对应工具即可。
3.ansible依赖大量的python模块来实现批量管理。
4.ansible配置文件/etc/ansible/ansible.cfg
4.Ansible基础架构
1.连接插件(connectior plugins) 用于连接主机 用来连接被管理端
2.核心模块(core modules) 连接主机实现操作, 它依赖于具体的模块来做具体的事情
3.自定义模块(custom modules) 根据自己的需求编写具体的模块
4.插件(plugins) 完成模块功能的补充
5.剧本(playbooks)ansible的配置文件,将多个任务定义在剧本中,由ansible自动执行
6.主机清单(host inventory)定义ansible需要操作主机的范围
最重要的一点是 ansible是模块化的 它所有的操作都依赖于模块
http://cdn.xuliangwei.com/15365930348150.jpg
6.Ansible安装配置
实现从管理机m01到其他机器的密钥认证
-
ansible借助公钥批量管理
#利用非交换式工具实现批量分发公钥与批量管理服务器[[email protected] ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected]
[[email protected] ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected] -
安装ansible
[[email protected] ~]# yum install ansible -y
//检查ansible版本
[[email protected] ~]# ansible --version
ansible 2.7.5 -
验证ansible
-
ansible是通过ssh端口探测通信
[[email protected] ~]# ansible oldboy -m ping
10.0.0.30 | SUCCESS => {
"changed": false,
"ping": "pong"
}
10.0.0.40 | SUCCESS => {
"changed": false,
"ping": "pong"77
} -
ansible命令语法格式
http://cdn.xuliangwei.com/15329514992633.jpg 图片命令格式[[email protected] ~]# ansible oldboy -m command -a "hostname"
10.0.0.31 | SUCCESS | rc=0 >>
backup10.0.0.41 | SUCCESS | rc=0 >>
nfs01 - Ansible清单管理
inventory文件通常用于定义要管理主机的认证信息, 例如ssh登录用户名、密码以及key相关信息。如何配置Inventory文件
主机
1.支持主机名通配以及正则表达式,例如web[1:3].oldboy.com
2.支持基于非标准的ssh端口,例如web1.oldboy.com:6666
3.支持指定变量,可对个别主机的特殊配置,如登陆用户,密码等
主机组
1.支持嵌套组,例如[game:children],那么在game模块下面的组都会被game所包含
2.支持指定变量,例如[game:vars]在下面指定变量
[[email protected] ~]# cat /etc/ansible/hosts
[webservers]
10.0.0.8
10.0.0.31
10.0.0.41
10.0.0.61
添加三台主机至webserver[low版]
[webservers]
web1.oldboy.com
web2.oldboy.com
web3.oldboy.com
添加三台主机至webserver[low改良版]
[webservers]
web[1:3].oldboy.com
添加三台主机至webserver[密码版]
[webservers]
web1.oldboy.com ansible_ssh_pass=‘123456‘
web2.oldboy.com ansible_ssh_pass=‘123456‘
web3.oldboy.com ansible_ssh_pass=‘123456‘
添加三台主机至webserver[密码改良版]
[webservers]
web[1:3].oldboy.com ansible_ssh_pass=‘123456‘
添加三台主机至webserver[密码拆分版]
[webservers]
web1.oldboy.com
web2.oldboy.com
web3.oldboy.com
[webservers:vars]
ansible_ssh_pass=‘123456‘
定义多组,多组汇总整合
[apache]
web1.oldboy.com
web2.oldboy.com
web3.oldboy.com
[apache:vars]
ansible_ssh_pass=‘123456‘
[nginx]
10.0.0.7
10.0.0.31
10.0.0.41
10.0.0.61
[nginx:vars]
ansible_ssh_pass=‘123456‘
# webservers组包括两个子组[apapche,nginx]
[webservers:children]
apache
nginx
?
Ansible内置变量
http://cdn.xuliangwei.com/15329675176606.jpg
6. Ansible常用模块
在ansible中是指需要快速执行一条命令, 并且不需要保存的命令,对于复杂的命令则为playbook
Ansible注意事项->提示颜色信息说明
翔×××:对远程节点进行相应修改
帽子绿:对远程节点不进行相应修改,或者只是对远程节点信息进行查看
深红色:操作执行命令有异常
浅紫色:表示对命令执行发出警告信息(可能存在的问题,给你一下建议)
1.command命令模块
默认模块, 执行命令
[[email protected] ~]# ansible oldboy -a "hostname"
如果需要一些管道操作,则使用shell
[[email protected] ~]# ansible oldboy -m shell -a "ifconfig|grep eth0" -f 50
# -f =forks /etc/ansible/ansible.cfg #结果返回的数量
2.script脚本模块
# 编写脚本
[[email protected] ~]# mkdir -p /server/scripts
[[email protected] ~]# cat /server/scripts/yum.sh
#!/usr/bin/bash
yum install -y iftop
#在本地运行模块,等同于在远程执行,不需要将脚本文件进行推送目标主机执行
[[email protected] ~]# ansible oldboy -m script -a "/server/scripts/yum.sh"
3.yum安装软件模块
[[email protected] ~]# ansible oldboy -m yum -a "name=httpd state=installed"
name ---指定要安装的软件包名称
state ---指定使用yum的方法
? installed,present ---安装软件包
? removed,absent ---移除软件包
? latest ---安装最新软件包
4.copy文件拷贝模块
# 推送文件模块
[[email protected] ~]# ansible oldboy -m copy -a "src=/etc/hosts dest=/tmp/test.txt"
# 在推送覆盖远程端文件前,对远端已有文件进行备份,按照时间信息备份
[[email protected] ~]# ansible oldboy -m copy -a "src=/etc/hosts dest=/tmp/test.txt backup=yes"
# 直接向远端文件内写入数据信息,并且会覆盖远端文件内原有数据信息
[[email protected] ~]# ansible oldboy -m copy -a "content=‘bgx‘ dest=/tmp/oldboy"
src --- 推送数据的源文件信息
dest --- 推送数据的目标路径
backup --- 对推送传输过去的文件,进行备份
content --- 直接批量在被管理端文件中添加内容
group --- 将本地文件推送到远端,指定文件属组信息
owner --- 将本地文件推送到远端,指定文件属主信息
mode --- 将本地文件推送到远端,指定文件权限信息
5.file文件配置模块
[[email protected] ~]# ansible oldboy -m file -a "path=/tmp/oldboy state=diretory"
[[email protected] ~]# ansible oldboy -m file -a "path=/tmp/tt state=touch mode=555 owner=root group=root"
[[email protected] ~]# ansible oldboy -m file -a "src=/tmp/tt path=/tmp/tt_link state=link"
path --- 指定远程主机目录或文件信息
recurse --- 递归授权
state ---
? directory --- 在远端创建目录
? touch --- 在远端创建文件
? link --- link或hard表示创建链接文件
? absent --- 表示删除文件或目录
? mode --- 设置文件或目录权限
? owner --- 设置文件或目录属主信息
? group --- 设置文件或目录属组信息
6.service服务模块
[[email protected] ~]# ansible oldboy -m service -a "name=crond state=stopped enabled=yes"
name # 定义要启动服务的名称
state # 指定服务状态是停止或是运行,停止和运行指令要写成过去时
? started # 启动
? stopped # 停止
? restarted # 重启
? reloaded # 重载
enabled # 是否让服务开启自启动
7.group组模块
[[email protected] ~]# ansible oldboy -m group -a "name=oldgirl gid=888"
name # 指定创建的组名
gid # 指定组的gid
state
? absent # 移除远端主机的组
? present # 创建远端主机的组(默认)
8.user模块
# -1使用MD5进行加密 -stdin 非交互式 -salt 加密参数
[[email protected] ~]# echo "bgx"| openssl passwd -1 -stdin -salt ‘salt‘
[[email protected] ~]# ansible oldboy -m user -a "name=oldgirl uid=888 group=888 shell=/sbin/nologin create_home=no"
[[email protected] ~]# ansible oldboy -m user -a "name=xlw password=‘$1$765yDGau$diDKPRoCIPMU6KEVEaPTZ0‘"
uid # 指定用户的uid
group # 指定用户组名称
groups # 指定附加组名称
password # 给用户添加密码
shell # 指定用户登录shell
create_home # 是否创建家目录
9.crond定时任务模块
# 正常使用crond服务
[[email protected] ~]# crontab -l
* * * * * /bin/sh /server/scripts/yum.sh
# 使用ansible添加一条定时任务
[[email protected] ~]# ansible oldboy -m cron -a "minute=* hour=* day=* month=* weekday=* job=‘/bin/sh /server/scripts/test.sh‘"
[[email protected] ~]# ansible oldboy -m cron -a "job=‘/bin/sh /server/scripts/test.sh‘"
# 设置定时任务注释信息,防止重复,name设定
[[email protected] ~]# ansible oldboy -m cron -a "name=‘cron01‘ job=‘/bin/sh /server/scripts/test.sh‘"
# 删除相应定时任务
[[email protected] ~]# ansible oldboy -m cron -a "name=‘ansible cron02‘ minute=0 hour=0 job=‘/bin/sh /server/scripts/test.sh‘ state=absent"
# 注释相应定时任务,使定时任务失效
[[email protected] scripts]# ansible oldboy -m cron -a "name=‘ansible cron01‘ minute=0 hour=0 job=‘/bin/sh /server/scripts/test.sh‘ disabled=no"
10.mount模块
[[email protected] ~]# ansible oldboy -m mount -a "src=172.16.1.31:/data path=/data fstype=nfs opts=defaults state=present"
[[email protected] ~]# ansible web -m mount -a "src=172.16.1.31:/data path=/data fstype=nfs opts=defaults state=mounted"
[[email protected] ~]# ansible web -m mount -a "src=172.16.1.31:/data path=/data fstype=nfs opts=defaults state=unmounted"
[[email protected] ~]# ansible web -m mount -a "src=172.16.1.31:/data path=/data fstype=nfs opts=defaults state=absent"
present # 开机挂载,仅将挂载配置写入/etc/fstab
mounted # 挂载设备,并将配置写入/etc/fstab
unmounted # 卸载设备,不会清除/etc/fstab写入的配置
absent # 卸载设备,会清理/etc/fstab写入的配置
11.ansible查看帮助方法
[[email protected] ~]# ansible-doc -l --- 查看所有模块说明信息
[[email protected] ~]# ansible-doc copy --- 表示指定查看某个模块参数用法信息
7.Ansible Playbook
playbook是由一个或多个模块组成的,使用多个不同的模块,完成一件事情。
playbook通过yaml语法识别描述的状态文件。扩展名是yaml
1.YAML三板斧
缩进
YAML使用一个固定的缩进风格表示层级结构,每个缩进由两个空格组成, 不能使用tabs
冒号
以冒号结尾的除外,其他所有冒号后面所有必须有空格。
短横线
表示列表项,使用一个短横杠加一个空格。
多个项使用同样的缩进级别作为同一列表。
2.ansible playbook安装Apache示例
[[email protected] ansible_playbook]# cat webserver.yaml
- hosts: 10.0.0.20
定义变量,后续jinja文件可以应用对应的变量
vars:
? http_port: 80
tasks:- name: ensure apache is at the latest version
yum: pkg=httpd state=latest
- name: ensure apache is at the latest version
使用template模板,引用上面vars定义的变量,动态配置httpd文件
- name: write the apache config file
template: src=./conf/httpd.j2 dest=/etc/httpd/conf/httpd.conf
监控配置文件变化,如果发生变化则调用name为restart apache的handlers
notify: restart apache
- name: ensure apache is running
service: name=httpd state=started
在发生改变时执行的操作
handlers:
- name: restart apache
service: name=httpd state=restarted
8.Ansible项目案例
1.环境规划
角色 外网IP(NAT) 内网IP(LAN) 部署软件
m01 eth0:10.0.0.61 eth1:172.16.1.61 ansible
backup eth0:10.0.0.41 eth1:172.16.1.41 rsync
nfs eth0:10.0.0.31 eth1:172.16.1.31 nfs、Sersync
web01 eth0:10.0.0.7 eth1:172.16.1.7 httpd
1.目录规划
[[email protected] ~]# mkdir /etc/ansible/ansible_playbook/{file,conf,scripts} -p
[[email protected] ~]# tree /etc/ansible/ansible_playbook/
/etc/ansible/ansible_playbook/
├── conf
└── file
└── scripts
2.基础环境:所有机器统一的配置
? 1.需要关闭firewalld以及selinux、epel仓库、ssh端口、优化基础配置
? 2.需要安装rsync和nfs-utils
? 3.准备www用户
? 4.需要准备/etc/rsync.pass密码文件
? 5.需要准备全网备份脚本
基础的playbook剧本
[[email protected] ansible_playbook]# cat base.yaml
- hosts: all
tasks:
- name: Install Epel Repos
get_url: url=http://mirrors.aliyun.com/repo/epel-7.repo dest=/etc/yum.repos.d/epel.repo
- name: Dns Client
copy: src=./conf/resolv.conf dest=/etc/resolv.conf
- name: Install Rsync Nfs-Utils
yum: name=rsync,nfs-utils state=installed
- name: Create Group WWW
group: name=www gid=666
- name: Create User WWW
user: name=www uid=666 group=666 create_home=no shell=/sbin/nologin
- name: Create Rsync_Client_Pass
copy: content=‘1‘ dest=/etc/rsync.pass mode=600
- name: Create Scripts Directory
file: path=/server/scripts recurse=yes state=directory
- name: Push File Scripts
copy: src=./scripts/rsync_backup_md5.sh dest=/server/scripts/
- name: Crontable Scripts
cron: name="backup scripts" hour=01 minute=00 job="/bin/bash /server/scripts/rsync_backup_md5.sh &>/dev/null"
2.应用环境:Rsync
? 1.安装rsync
? 2.配置rsync(配置变更,一定要进行重载操作)
? 3.创建虚拟用户,权限调整
? 4.创建目录/data/ /backup
? 5.启动rsync
? 6.配置邮箱->邮箱的发件人->校验的脚本
?
[[email protected] ansible_playbook]# cat rsync.yaml
- hosts: backup
tasks:
- name: Installed Rsync Server
yum: name=rsync,mailx state=installed
- name: configure Rsync Server
copy: src=./conf/rsyncd.conf dest=/etc/rsyncd.conf
notify: Restart Rsync Server
- name: Create Virt User
copy: content=‘rsync_backup:1‘ dest=/etc/rsync.password mode=600
- name: Create Data
file: path=/data state=directory recurse=yes owner=www group=www mode=755
- name: Create Backup
file: path=/backup state=directory recurse=yes owner=www group=www mode=755
- name: Start RsyncServer
service: name=rsyncd state=started enabled=yes
- name: Push Check Scripts
copy: src=./scripts/rsync_check_backup.sh dest=/server/scripts/
- name: Crond Check Scripts
cron: name="check scripts" hour=05 minute=00 job="/bin/bash /server/scripts/rsync_check_backup.sh &>/dev/null"
handlers:
- name: Restart Rsync Server
service: name=rsyncd state=restarted
3.应用环境:NFS
? 1.安装nfs-utils
? 2.配置nfs (当修改了配置,触发重载操作)
? 3.创建目录,授权
? 4.启动
[[email protected] ansible_playbook]# cat nfs.yaml
- hosts: nfs
tasks:
- name: Installed Nfs Server
yum: name=nfs-utils state=installed
- name: Configure Nfs Server
copy: src=./conf/exports dest=/etc/exports
notify: Restart Nfs Server
- name: Create Share Data
file: path=/data state=directory recurse=yes owner=www group=www mode=755
- name: Start Nfs Server
service: name=nfs-server state=started enabled=yes
handlers:
- name: Restart Nfs Server
service: name=nfs-server state=restarted
4.应用环境:Sersync
? 1.下载sersync
? 2.解压,改名,配置
? 3.启动
[[email protected] ansible_playbook]# cat sersync.yaml
```yaml
- hosts: nfs
tasks:
- name: Scp Sersync
copy: src=./file/sersync2.5.4_64bit_binary_stable_final.tar.gz dest=/usr/local/sersync.tar.gz
- name: Zip
shell: cd /usr/local && tar xf sersync.tar.gz && mv GNU-Linux-x86 sersync
args:
creates: /usr/local/sersync
- name: configure Sersync
copy: src=./conf/confxml.xml dest=/usr/local/sersync/
- name: Start Sersync
shell: /usr/local/sersync/sersync2 -dro /usr/local/sersync/confxml.xml
5.应用环境:WEB
1、挂载nfs共享的目录
[[email protected] ansible_playbook]# cat web.yaml
- hosts: web
tasks:
- name: Mount NFS Server Share Data
mount: src=172.16.1.31:/data path=/data fstype=nfs opts=defaults
state=mounted
6.包含include
[[email protected] ansible_playbook]# cat mail.yaml
- import_playbook: base.yaml
- import_playbook: rsync.yaml
- import_playbook: nfs.yaml
- import_playbook: sersync.yaml
- import_playbook: web.yaml
7.测试
? 1.推送公钥
? 2.使用ping模块测试
? 3.执行ansible-playbook测试
? 4.测试全网备份,测试是否能发邮件,并校验结果
? 5.测试nfs的挂载
? 6.测试实时同步
以上是关于Ansible自动化配置实战的主要内容,如果未能解决你的问题,请参考以下文章