Ansible概述和常用模块

目录

一、ansible概述

(一)基础知识

(二)特性

二、部署ansible

(一)管理端安装

[(二)ansible 目录结构](#(二)ansible 目录结构)

(三)配置主机清单

(四)配置密钥对验证

1.配置密钥对

2.登录验证

三、ansible命令行模块

(一)查看模块

(二)ansible常用模块

[1.command 模块](#1.command 模块)

[2.shell 模块](#2.shell 模块)

[3.cron 模块](#3.cron 模块)

[4.user 模块](#4.user 模块)

[5.group 模块](#5.group 模块)

[6.copy 模块](#6.copy 模块)

[7.file 模块](#7.file 模块)

(1)修改文件的属主属组权限

(2)设置链接文件

(3)创建和删除文件

[8.hostname 模块](#8.hostname 模块)

[9.ping 模块](#9.ping 模块)

[10.yum 模块](#10.yum 模块)

(1)安装软件

(2)删除软件

[11.service/systemd 模块](#11.service/systemd 模块)

[12.script 模块](#12.script 模块)

[13.mount 模块](#13.mount 模块)

(1)常用的参数:

[14.archive 模块](#14.archive 模块)

(1)常用的参数:

[15.unarchive 模块](#15.unarchive 模块)

(1)常用的参数:

[16.replace 模块](#16.replace 模块)

(1)常用的参数:

[17.setup 模块](#17.setup 模块)


一、ansible概述

(一)基础知识

  • Ansible是一个基于Python开发的配置管理和应用部署工具,现在也在自动化管理领域大放异彩。它融合了众多老牌运维工具的优点,Pubbet和Saltstack能实现的功能,Ansible基本上都可以实现。
  • Ansible能批量配置、部署、管理上千台主机。比如以前需要切换到每个主机上执行的一或多个操作,使用Ansible只需在固定的一台Ansible控制节点上去完成所有主机的操作。
  • Ansible是基于模块工作的,它只是提供了一种运行框架,它本身没有完成任务的能力,真正执行操作的是Ansible的模块, 比如copy模块用于拷贝文件到远程主机上,service模块用于管理服务的启动、停止、重启等。
  • 使用者在使用时,在服务器终端输入命令或者playbooks,会通过预定好的规则将playbook拆解为play,再组织成ansible可以识别的任务,调用模块和插件,根据主机清单通过SSH将临时文件发给远程的客户端执行并返回结果,执行结束后自动删除
  • Ansible的很多模块在执行时都会先判断目标节点是否要执行任务,所以,可以放心大胆地让Ansible去执行任务,重复执行某个任务绝大多数时候不会产生任何副作用。

(二)特性

  1. 无客户端agent的存在,不需要在被控制的节点上安装任何客户端应用。
  2. 通过ssh协议与被控制节点通信
  3. 基于模块工作的,可以通过模块实现在被控制节点上执行相应的命令操作
  4. 很多模块具有幂等性,即可实现多次模块操作的状态如果没有发生改变,则不会重复执行

二、部署ansible

管理端:172.16.72.50 ansible

被管理端:172.16.72.30

被管理端:172.16.72.40

(一)管理端安装

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]			#配置组名
172.16.72.30			#组里包含的被管理的主机IP地址或主机名(主机名需要先修改/etc/hosts文件)
 
[dbservers]
172.16.72.40

(四)配置密钥对验证

1.配置密钥对

ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa
 
yum install -y sshpass
sshpass -p '123' ssh-copy-id -o StrictHostKeyChecking=no root@172.16.72.30
sshpass -p '123' ssh-copy-id -o StrictHostKeyChecking=no root@172.16.72.40  

2.登录验证

三、ansible命令行模块

(一)查看模块

命令格式:
ansible <组名> -m <模块> -a <参数列表>
 
查看模块
ansible-doc -l                #列出当前ansible的所有模块
ansible-doc -s 模块名         #查看指定模块的信息

(二)ansible常用模块

1.command 模块

  • 在远程主机执行linux命令,但不支持管道、重定向等特殊符合,是ansible的默认模块

    ansible-doc -s command #-s 列出指定模块的描述信息和操作动作

    例:
    ansible 172.16.72.30 -m command -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 模块,则默认运行 command 模块

    常用的参数:
    chdir:在远程主机上运行命令前提前进入目录
    creates:判断指定文件是否存在,如果存在,不执行后面的操作
    removes:判断指定文件是否存在,如果存在,执行后面的操作

    ansible all -m command -a "chdir=/home ls ./"

2.shell 模块

  • 在远程主机执行linux命令,支持管道、重定向等特殊符合

    ansible-doc -s shell

    例;
    ansible dbservers -m shell -a 'echo 123456 | passwd --stdin localhost'
    ansible dbservers -m shell -a 'echo $(ifconfig ens33 | awk "NR==2 {print $2}") | cut -d " " -f2'
    ansible webservers -m shell -a 'echo $(ifconfig ens33 | awk "NR==2 {print $2}")'

3.cron 模块

  • 在远程主机设置crontab计划任务

    ansible-doc -s cron #按 q 退出

    //常用的参数:
    minute/hour/day/month/weekday:分/时/日/月/周
    job:任务计划要执行的命令
    name:任务计划的名称
    user:指定计划任务属于哪个用户,默认是root用户

    例:
    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'

    state=present|absent

4.user 模块

  • 在远程主机设管理用户账户

    常用的参数:
    name:用户名,必选参数
    state=present|absent:创建账号或者删除账号,present表示创建,absent表示删除
    system=yes|no:是否为系统账号
    uid:用户uid
    group:用户基本组
    groups: 用户所属附加组
    shell:默认使用的shell
    create_home=yse|no: 是否创建家目录
    password:用户的密码,建议使用加密后的字符串
    remove=yes|no:当state=absent时,是否删除用户的家目录

    例:
    ansible dbservers -m user -a 'name="byq"' #创建用户byq
    ansible dbservers -m command -a 'tail /etc/passwd'
    ansible dbservers -m user -a 'name="byq" state=absent' #删除用户byq

    state=present|absent

5.group 模块

  • 在远程主机设管理组账户

    ansible-doc -s group

    ansible dbservers -m group -a 'name=mysql gid=306 system=yes' #创建mysql组
    ansible dbservers -a 'tail /etc/group'
    ansible dbservers -m user -a 'name=b uid=306 system=yes group=mysql' #将test01用户添加到mysql组中
    ansible dbservers -a 'tail /etc/passwd'
    ansible dbservers -a 'id b'

    state=present|absent

6.copy 模块

  • 将ansible主机的文件/目录/内容复制到远程主机
bash 复制代码
常用的参数:
dest:指出复制文件的目标及位置,使用绝对路径,如果源是目录,指目标也要是目录,如果目标文件已经存在会覆盖原有的内容
src:指出源文件的路径,可以使用相对路径或绝对路径,支持直接指定目录,如果源是目录则目标也要是目录
mode:指出复制时,目标文件的权限 
owner:指出复制时,目标文件的属主
group:指出复制时,目标文件的属组
content:指出复制到目标主机上的内容,不能与src一起使用
 
例:
ansible dbservers -m copy -a 'src=/etc/fstab dest=/opt/fstab.bak owner=root mode=640'
ansible dbservers -a 'ls -l /opt'
ansible dbservers -a 'cat /opt/fstab.bak'
 
ansible dbservers -m copy -a 'content="helloworld" dest=/opt/hello.txt' 
 #将helloworld写入/opt/hello.txt文件中
ansible dbservers -a 'cat /opt/hello.txt' 

7.file 模块

  • 在远程主机管理文件/目录
(1)修改文件的属主属组权限
bash 复制代码
ansible-doc -s file
 
ansible dbservers -m file -a 'owner=b group=mysql mode=644 path=/opt/fstab.bak'	
#修改文件的属主属组权限等
 
state=present|absent|touch|directory|link
src(指定软链接的源路径,path指定软链接文件理解)
(2)设置链接文件
bash 复制代码
ansible dbservers -m file -a 'path=/opt/fstab.link src=/opt/fstab.bak state=link'    
#设置/opt/fstab.link为/opt/fstab.bak的链接文件

ansible dbservers -a 'ls -l /opt'
(3)创建和删除文件
bash 复制代码
ansible dbservers -m file -a "path=/opt/abc.txt state=touch"			
#创建一个文件
ansible dbservers -m file -a "path=/opt/abc.txt state=absent"			
#删除一个文件

ansible dbservers -a 'ls -l /opt'

8.hostname 模块

  • 用于管理远程主机上的主机名

    ansible dbservers -m hostname -a "name=test02"
    ansible webservers -m hostname -a "name=test01"

9.ping 模块

  • 检测远程主机的连通性

    ansible all -m ping

10.yum 模块

  • 在远程主机上安装与卸载软件包

    ansible-doc -s yum

(1)安装软件
ansible webservers -m yum -a 'name=httpd'
ansible dbservers -m yum -a 'name=httpd'
(2)删除软件
ansible dbservers  -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 脚本

    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'

    vim test01.sh
    #!/bin/bash
    echo $1 > /opt/test01.txt
    echo s2 >> /opt/test01.txt

    ansible dbservers -m script -a 'test01.sh abc 123!'

13.mount 模块

  • 挂载文件系统
(1)常用的参数:
  • src:定义挂载设备的路径

  • path:定义挂载到哪个目录,必须指定

  • fstype:指定挂载文件的系统类型,必须指定,xfs、iso9660、nfs...

  • opts:定义挂载的参数,defaults、rw、ro...

  • state:定义挂载的状态,mounted(进行挂载,修改/etc/fstab信息)、absent(永久性卸载,并修改 /etc/fstab信息)、unmounted(临时卸载,不修改/etc/fstab信息)

    语法
    ansible-doc -s mount

    ansible dbservers -m mount -a 'src=/dev/sr0 path=/mnt state=mounted fstype=iso9660'

14.archive 模块

  • 打包压缩
(1)常用的参数:
  • path: 必须参数,远程主机上需要被打包压缩的源文件/目录

  • dest: 打包压缩后的包文件路径(包文件的父目录必须存在);如果包文件已存在,则会被覆盖

  • format: 指定压缩类型,包括: bz2、gz(默认)、tar、xz、zip

  • remove=yes|no: 是否删除源文件

    ansible-doc -s archive

    ansible dbservers -m archive -a "path=/etc/yum.repos.d/ dest=/opt/repo.zip format=zip"
    ansible dbservers -m archive -a "path=/opt/abc.txt,/opt/123.txt dest=/opt/abc123.tar.gz format=gz remove=yes"

15.unarchive 模块

  • 解包解压缩
(1)常用的参数:
  • copy:默认为 copy=yes ,拷贝的文件从 ansible 主机复制到远程主机,copy=no 表示在远程主机上寻找源文件解压

  • src:tar包源路径,可以是 ansible 主机上的路径,也可以是远程主机上的路径,如果是远程主机上的路径,则需设置 copy=no

  • dest:解压后文件的目标绝对路径

  • remote_src: 和 copy 功能一样且互斥,设置 remote_src=yes 表示文件在远程主机上,设置为 remote_src=no 表示文件在 ansible 主机上

    #将 ansible 主机的压缩文件拷贝到到远程主机并解压,修改文件所属组和用户
    ansible dbservers -m unarchive -a "src=/opt/ABC.tar.gz dest=/root copy=yes"
    或者
    ansible dbservers -m unarchive -a "src=/opt/ABC.tar.gz dest=/root remote_src=no"

    #在远程主机解包
    ansible dbservers -m unarchive -a "src=/opt/123.tar.gz dest=/root copy=no"
    或者
    ansible dbservers -m unarchive -a "src=/opt/123.tar.gz dest=/root remote_src=yes"

16.replace 模块

  • 类似于sed命令,主要也是基于正则进行匹配和替换
(1)常用的参数:
  • path:必须参数,指定要修改的文件

  • regexp:必须参数,指定一个正则表达式

  • replace:替换regexp参数匹配到的字符串

  • backup=yes|no: 修改源文件前创建一个包含时间戳信息的备份文件

  • before:如果指定,则仅替换/删除此匹配之前的内容,可以和after参数结合使用

  • after:如果指定,则仅替换/删除此匹配之后的内容,可以和before参数结合使用

  • owner:修改文件用户名

  • group:修改文件组名

  • mode:修改文件权限

    vim /opt/test.txt
    11 22 33 44 55 66
    aa bb cc dd ee ff
    1a 2b 3c 4d 5e 6f

    #匹配 33 并修改为 cc
    ansible dbservers -m replace -a "path=/opt/test.txt regexp='33' replace='cc'"
    #匹配到任意一个或多个开头的行增加注释
    ansible dbservers -m replace -a "path=/opt/test.txt regexp='^(.)' replace='#\1'"
    #取消注释
    ansible dbservers -m replace -a "path=/opt/test.txt regexp='^#(.
    )' replace='\1'"
    #匹配以 a 开头的后面有一个或者多个字符的行,并在前面添加 # 注释
    ansible dbservers -m replace -a "path=/opt/test.txt regexp='^(a.*)' replace='#\1'"
    #将cc之前2替换成two
    ansible dbservers -m replace -a "path=/opt/test.txt regexp='2' replace='two' before=cc"

17.setup 模块

  • facts 组件是用来收集被管理节点信息的,使用 setup 模块可以获取这些信息

    ansible-doc -s setup

    ansible webservers -m setup
    #获取mysql组主机的facts信息
    ansible dbservers -m setup -a 'filter=*ipv4'
    #使用filter可以筛选指定的facts信息

相关推荐
萨格拉斯救世主34 分钟前
戴尔R930服务器增加 Intel X710-DA2双万兆光口含模块
运维·服务器
无所谓จุ๊บ36 分钟前
树莓派开发相关知识十 -小试服务器
服务器·网络·树莓派
Jtti37 分钟前
Windows系统服务器怎么设置远程连接?详细步骤
运维·服务器·windows
道法自然040244 分钟前
Ethernet 系列(8)-- 基础学习::ARP
网络·学习·智能路由器
yeyuningzi1 小时前
Debian 12环境里部署nginx步骤记录
linux·运维·服务器
EasyCVR2 小时前
萤石设备视频接入平台EasyCVR多品牌摄像机视频平台海康ehome平台(ISUP)接入EasyCVR不在线如何排查?
运维·服务器·网络·人工智能·ffmpeg·音视频
明月看潮生2 小时前
青少年编程与数学 02-003 Go语言网络编程 15课题、Go语言URL编程
开发语言·网络·青少年编程·golang·编程与数学
龙哥说跨境3 小时前
如何利用指纹浏览器爬虫绕过Cloudflare的防护?
服务器·网络·python·网络爬虫
懒大王就是我4 小时前
C语言网络编程 -- TCP/iP协议
c语言·网络·tcp/ip
Elaine2023914 小时前
06 网络编程基础
java·网络