Ansible------Ansible概述,搭建,常用模块介绍
Posted 下雨天的放羊娃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ansible------Ansible概述,搭建,常用模块介绍相关的知识,希望对你有一定的参考价值。
目录
一.Ansible概述
Ansible
是一个基于Python
开发的配置管理和应用部署工具,现在也在自动化管理领域大放异彩。它融合了众多老牌运维工具的优点,Pubbet
和Saltstack
能实现的功能,Ansible
基本上都可以实现。
Ansible
能批量配置、部署、管理上千台主机。比如以前需要切换到每个主机上执行的一或多个操作,使用Ansible只 需在固定的一台Ansible
控制节点上去完成所有主机的操作。
Ansible
是基于模块
工作的,它只是提供了一种运行框架,它本身没有完成任务的能力,真正执行操作的是Ansible
的模块,比如copy模块用于拷贝文件到远程主机上,service模块用于管理服务的启动、停止、重启等。
Ansible
其中一个比较鲜明的特性是Agentless
,即无Agent
的存在,它就像普通命令一样,并非C/S软件,也只需在某个作为控制节点的主机上安装一次Ansible即可, 通常它基于ssh连接来控制远程主机,远程主机上不需要安装Ansible或其它额外的服务。
使用者在使用时,在服务器终端输入命令或者
playbooks
, 会通过预定好的规则将playbook
拆解为play
, 再组织成ansible
可以识别的任务调用模块
和插件
,根据主机清单通过SSH将临时文件发给远程的客户端执行并返回结果,执行结束后自动删除Ansible
的另一个比较鲜明的特性是它的绝大多数模块都具备幂等性(idempotence)
。所谓幂等性,指的是多次操作或多次执行对系统资源的影响是一致的。比如执行systemctl stop xxx命令来停止服务,当发现要停止的目标服务已经处于停止状态,它什么也不会做,所以多次停止的结果仍然是停止,不会改变结果,它是幂等的,而systemct1 restart xxx 是非幂等的。
Ansible的很多模块在执行时都会先判断目标节点是否要执行任务,所以,可以放心大胆地让Ansible去执行任务,重复执行某个任务绝大多数时候不会产生任何副作用。
二.Ansible环境安装部署
主机 | 系统 | IP | 服务 |
---|---|---|---|
管理端 | CentOS 7 | 192.168.121.55 | ansible |
被管理端 | CentOS 7 | 192.168.121.66 | ———— |
被管理端 | CentOS 7 | 192.168.121.77 | ———— |
//管理端安装ansible
yum install -y epel-release
//先安装epel源
yum install -y ansible
//ansible目录结构
/etc/ansible/
|——ansible.cfg #ansible的配置文件,一般无需修改
|——hosts #ansible的主机清单,用于存储需要管理的远程主机的相关信息
|__roles/ #公共角色目录
//配置主机清单
cd /etc/ansible
vim hosts
[webservers] #配置组名
192.168.121.66 #组里包含的被管理的主机IP地址或主机名(主机名需要先修改/etc/hosts文件)
[dbservers]
192.168.121.77
//配置密钥对验证
ssh-keygen -t rsa #一路回车,使用免密登录
sshpass -p '666' ssh-copy-id root@192.168.121.66
sshpass -P '666' ssh-copy-id root@192.168.121.77
三.Ansible命令行模块
命令格式: ansible <组名> -m <模块> -a <参数列表>
ansible-doc -l #列出所有已安装的模块,按q退出
1. command 模块
在远程主机执行命令,不支持管道,重定向等shell的特性
ansible-doc -s command #-s列出指定模块的描述信息和操作动作
ansible 192.168.121.66 -m comnand -a 'date' #指定ip执行date
ansible webservers -m command -a 'date ' #指定组执行date
ansible dbservers -m command -a 'date'
ansible all -m command -a 'date ' #all代表所有hosts主机
ansible all -a 'ls /' #如省略-m模块,则默认运行comnand模块
常用的参数:
chdir
: 在远程主机上运行命令前提前进入目录
creates
: 判断文件是否存在,如果存在则不执行后面的命令
removes
:判断文件是否存在,如果存在这执行后面的命令
executeble
:指明运行命令的shell程序
ansible all -m command -a "chdir=opt ls ./"
到192.168.121.66主机的opt目录下创建一个1.txt文件
ansible webservers -m command -a "creates=/opt/1.txt echo yes" #如果文件存在则,不返回yes
ansible webservers -m command -a "creates=/opt/2.txt echo yes" #如果文件存在,则返回yes
ansible webservers -m command -a "removes=/opt/1.txt echo yes" #如果文件存在,则返回yes
ansible webservers -m command -a "removes=/opt/2.txt echo yes" #如果文件存在,则不返回yes
2. shell模块
在远程主机执行命令,相当于调用远程主机的shell进程,然后在该shell下打开一个子shell运行命令(支持管道符号等功能)
ansible-doc -s shell
ansible webservers -m shell -a 'ls /opt | grep "1.txt"'
3. cron模块
在远程主机定义任务计划。其中有两种状态(state) : present 表示添加(可以省略),absent 表示移除。
ansible-doc -s cron
#按q退出
常用的参数:
minute/hour/day/month/weekday
:分/时/日/月/周
job
: 任务计划要执行的命令
name
:任务计划的名称
ansible webservers -m cron -a 'minute="*/1" job="/bin/echo helloworld" name="1.crontab"'
ansible webservers -a 'crontab -l'
ansible webservers -m cron -a 'name="1.crontab" state=absent' #移除计划任务,假如该计划任务没有取名字,name=None即可
4. user 模块
用户管理的模块
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="beiliang"'
#创建用户beiliang
ansible dbservers -m command -a'tail -2 /etc/passwd'
ansible dbservers -m user -a 'name="beiliang" state=absent remove=yes'
#删除用户beiliang
ansible dbservers -m command -a'tail -2 /etc/passwd'
5. group模块
用户组管理的模块
ansible-doc -s group
ansible dbservers -m group -a 'name=mysql gid=306 system=yes' #创建mysql组
ansible dbservers -a 'tail -2 /etc/group'
ansible dbservers -m user -a 'name=mysqluser uid=306 system=yes group=mysql' #将mysqluser用户添加到mysql组中
ansible dbservers -a 'tail -2 /etc/passwd'
ansible dbservers -a 'id mysqluser'
6. copy模块
用于复制指定主机文件到远程主机的
ansible-doc -s copy
常用的参数:
dest
:指出复制文件的目标及位置,使用绝对路径,如果是源目录,指目标也要是目录,如果目标文件已经存在会覆盖原有的内容
src
:指出源文件的路径,可以使用相对路径或绝对路径,支持直接指定目录,如果源是目录则目标也要是目录
mode
:指出复制时,目标文件的权限
owner
:指出复制时,目标文件的属主
group
:指出复制时,目标文件的属组
content
:指出复制到目标主机上的内容,不能与src- -起使用
ansible webservers -a 'cat /opt/1.txt'
ansible webservers -m copy -a 'src=/opt/1.txt dest=/opt/2.txt owner=root mode=777'
ansible webservers -a 'ls -l /opt'
ansible webservers -a 'cat /opt/2.txt'
ansible webservers -m copy -a 'content="helloworld" dest=/opt/hello.txt' #将helloworld写入/opt/hello.txt文件中
ansible webservers -a 'cat /opt/hello.txt'
7. file 模块
设置文件属性
ansible-doc -s file
ansible dbservers -m user -a 'name=test system=yes'
#创建一个名为test的系统用户
ansible dbservers -m file -a 'owner=test group=test mode=777 path=/opt/1.txt'
#修改文件的属主属组权限等
ansible dbservers -m file -a 'src=/opt/1.txt path=/opt/2.txt state=link'
#设置/opt/1.txt为/opt/2.txt的链接文件
ansible dbservers -m file -a "path=/opt/abc.txt state=touch"
#创建一个文件
ansible dbservers -m file -a "path=/opt/abc.txt state=absent "
#删除一个文件
8. hostname模块
用于管理远程主机上的主机名
ansible dbservers -m hostname -a "name=test"
9. ping 模块
检测远程主机的连通性
ansible all -m ping
10. yum模块
在远程主机上安装与卸载软件包
ansible-doc -s yum
ansible webservers -m yum -a 'name=httpd'
#安装服务
ansible webservers -m yum -a 'name=httpd state=absent'
#卸载服务
11. service/systemd 模块
用于管理远程主机上的管理服务的运行状态
ansible-doc -s service
常用的参数:
name
:被管理的服务名称
state=started|stopped|restarted
:动作包含启动关闭或者重启
enabled=yes|no
:表示是否设置该服务开机自启.
runlevel
:如果设定了enabled开机自启去,则要定义在哪些运行目标下自启动
ansible webservers -a 'systemctl status httpd'
#查看web服务器httpd运行状态
ansible webservers -m service -a 'enabled=true name=httpd state=started'
#启动httpd服务
12. script 模块
实现远程批量运行本地的shell 脚本
ansible-doc -s script
vim test.sh
#! /bin/bash
echo "hello ansible from script" > /opt/script.txt
chmod +x test.sh
ansible webservers -m script -a 'test.sh'
ansible webservers -a 'cat /opt/script.txt'
13. setup模块
facts组件是用来收集被管理节点信息的,使用setup模块可以获取这些信息
ansible-doc -s setup
ansible dbservers -m setup
#获取webservers组主机的facts信息
ansible dbservers -m setup -a 'filter=*ipv4'
#使用filter可以筛选指定的facts信息
以上是关于Ansible------Ansible概述,搭建,常用模块介绍的主要内容,如果未能解决你的问题,请参考以下文章
大型企业中如何批量管理千万台服务器之ansible自动化运维工具详解 [⭐建议收藏⭐]