Ansible 常用模块介绍

ansible提供了众多模块,我们可以在ansible主机上运行ansible-doc -l命令查看ansible所有支持的模块。通过ansible-doc -s MODULE_NAME  命令可以查看指定模块的所有参数

查看所有模块

[email protected]:/etc/ansible/roles/tomcat8_install/tasks# ansible-doc  -l
less 436
Copyright (C) 1984-2009 Mark Nudelman
less comes with NO WARRANTY, to the extent permitted by law.
For information about the terms of redistribution,
see the file named README in the less distribution.
Homepage: http://www.greenwoodsoftware.com/less
a10_server                      Manage A10 Networks AX/SoftAX/Thunder/vThunder devices                                     
a10_service_group               Manage A10 Networks devices‘ service groups                                                
a10_virtual_server              Manage A10 Networks devices‘ virtual servers                                               
acl                             Sets and retrieves file ACL information.                                                   
add_host                        add a host (and alternatively a group) to the ansible-playbook in-memory inventory         
airbrake_deployment             Notify airbrake about app deployments                                                      
alternatives                    Manages alternative programs for common commands                                           
apache2_module                  enables/disables a module of the Apache2 webserver                                         
apk                             Manages apk packages                                                                       
apt                             Manages apt-packages                                                                       
apt_key                         Add or remove an apt key                                                                   
apt_repository                  Add and remove APT repositories                                                            
apt_rpm                         apt_rpm package manager                                                                    
assemble                        Assembles a configuration file from fragments                                              
assert                          Fail with custom message                                                                   
at                              Schedule the execution of a command or script file via the at command.                     
authorized_key                  Adds or removes an SSH authorized key                                                      
azure                           create or terminate a virtual machine in azure                                             
bigip_facts                     Collect facts from F5 BIG-IP devices                                                       
bigip_gtm_wide_ip               Manages F5 BIG-IP GTM wide ip                                                              
bigip_monitor_http              Manages F5 BIG-IP LTM

查看模块参数:

ansible-doc -s MODULE_NAME
例如:
[[email protected] ansible]# ansible-doc -s file
- name: Sets attributes of files
  action: file
      follow                 # This flag indicates that filesystem links, if they exist, should be followed.
      force                  # force the creation of the symlinks in two cases: the source file does not exist (but will appear later);
                               the destination exists and is a file (so, we need to unlink the "path" file
                               and create symlink to the "src" file in place of it).
      group                  # name of the group that should own the file/directory, as would be fed to `chown‘
      mode                   # mode the file or directory should be. For those used to `/usr/bin/chmod‘ remember that modes are actually
                               octal numbers (like 0644). Leaving off the leading zero will likely have
                               unexpected results. As of version 1.8, the mode may be specified as a
                               symbolic mode (for example, `u+rwx‘ or `u=rw,g=r,o=r‘).
      owner                  # name of the user that should own the file/directory, as would be fed to `chown‘
      path=                  # path to the file being managed.  Aliases: `dest‘, `name‘
      recurse                # recursively set the specified file attributes (applies only to state=directory)
      selevel                # level part of the SELinux file context. This is the MLS/MCS attribute, sometimes known as the `range‘.
                               `_default‘ feature works as for `seuser‘.
      serole                 # role part of SELinux file context, `_default‘ feature works as for `seuser‘.
      setype                 # type part of SELinux file context, `_default‘ feature works as for `seuser‘.
      seuser                 # user part of SELinux file context. Will default to system policy, if applicable. If set to `_default‘, it
                               will use the `user‘ portion of the policy if available
      src                    # path of the file to link to (applies only to `state=link‘). Will accept absolute, relative and nonexisting
                               paths. Relative paths are not expanded.
      state                  # If `directory‘, all immediate subdirectories will be created if they do not exist, since 1.7 they will be
                               created with the supplied permissions. If `file‘, the file will NOT be
                               created if it does not exist, see the [copy] or [template] module if you
                               want that behavior.  If `link‘, the symbolic link will be created or
                               changed. Use `hard‘ for hardlinks. If `absent‘, directories will be
                               recursively deleted, and files or symlinks will be unlinked. If `touch‘ (new
                               in 1.4), an empty file will be created if the `path‘ does not exist, while
                               an existing file or directory will receive updated file access and
                               modification times (similar to the way `touch` works from the command line)

模块介绍:

copy模块:http://docs.ansible.com/ansible/copy_module.html

功能:复制文件到远程主机的指定路径下:

参数:

src:本地文件的路径,如果源是一个目录,会将目录中所有的文件都copy过去

dest:远程主机的绝对路径

owner:文件属主

group:文件属组

mode:文件权限

命令演示:

ansible all -m copy -a ‘src=/etc/fstab dest=/tmp/fstab owner=root mode=0644‘

file模块:http://docs.ansible.com/ansible/file_module.html

功能:设置文件属性、创建符号链接、创建目录等

参数:

path:指明文件路径,可以使用name或dest来代替

owner:文件属主

group:文件属组

mode:文件权限

创建文件的符号链接:

src:指明源文件

dest:指明符号链接文件路径

命令演示:

ansible pms -m file -a ‘src=/tmp/fstab dest=/srv/fstab state=link‘
[[email protected] srv]# ll
lrwxrwxrwx 1 root root      10 Jul  6 14:08 fstab -> /tmp/fstab

ping模块:http://docs.ansible.com/ansible/ping_module.html

功能:测试被管理主机的连通性

命令演示:

[[email protected] ansible]# ansible all -m ping
172.16.206.134 | SUCCESS => {
    "changed": false, 
    "ping": "pong"
}
10.10.10.202 | SUCCESS => {
    "changed": false, 
    "ping": "pong"
}

command模块:http://docs.ansible.com/ansible/command_module.html

功能:在远程主机上执行命令

命令演示:

[[email protected] ansible]# ansible all -m command -a ‘hostname‘      
172.16.206.134 | SUCCESS | rc=0 >>
localhost.localdomain
10.10.10.202 | SUCCESS | rc=0 >>
localhost.localdomain

注意:command模块不支持管道符,这也是command模块和shell模块的区别。

例如:

user模块:http://docs.ansible.com/ansible/user_module.html

功能:在远程主机上创建或者删除用户

参数:

name:账户名

state:

present:创建

absent:删除

group:指定用户的基本组

uid:指定uid

system:创建系统用户 值为yes 或者no

命令演示:

[[email protected] ansible]# ansible pms -m user -a ‘name=test state=present uid=306 group=root  system=yes‘          
172.16.206.134 | SUCCESS => {
    "changed": true, 
    "comment": "", 
    "createhome": true, 
    "group": 0, 
    "home": "/home/test", 
    "name": "test", 
    "shell": "/bin/bash", 
    "state": "present", 
    "system": true, 
    "uid": 306
}
[[email protected] srv]# id test
uid=306(test) gid=0(root) groups=0(root)

service模块:http://docs.ansible.com/ansible/service_module.html

功能:管理远程主机上的服务状态

参数:

enabled=:是否开机自动启动,取值为yes或者no。enabled=yes,表示服务开启启动

name=:服务名

state=: 服务状态

started:启动

restarted:重启

stopped:停止

reloaded:重载

命令演示:

[[email protected] ansible]# ansible pms -m service -a ‘name=zabbix-agent state=started enabled=yes‘
172.16.206.134 | SUCCESS => {
    "changed": true, 
    "enabled": true, 
    "name": "zabbix-agent", 
    "state": "started"
}

未完待续

时间: 2024-11-06 10:25:14

Ansible 常用模块介绍的相关文章

ansible常用模块介绍

ansible查看模块用法 例子 查看shell 模块使用方法 [[email protected] opt]# ansible-doc -s shell 注: -i 指定配置文件  tomcatserver自己定义的工作组  -m 指定模块 file模块 file模块包含如下选项: force:需要在两种情况下强制创建软链接,一种是源文件不存在但之后会建立的情况下:另一种是目标软链接已存在,需要先取消之前的软链,然后创建新的软链,有两个选项:yes|no group:定义文件/目录的属组 mo

Ansible常用模块介绍及使用

ansible常用命令解析: 查看当前 ansible 都支持哪些模块: ansible-doc -l 查看某一模块可以使用的参数:ansible-doc -s copy (eg:copy模块) ansible用法: ansible 主机名 -m 模块名 -a 模块参数 -m:模块的名字,如果执行单一的命令不用加-m,默认走command -a: 模块参数,如果模块是command,-a 后面跟的就是命令参数 -i : 指定hosts文件位置      默认:/etc/ansible/hosts

Ansible 自动化运维工具之inventory和常用模块介绍

一.inventory介绍 前面我们介绍过ansible的hosts文件是存放被管理主机的,被管理主机比较少的情况下,直接在hosts中定义即可,但是以后很定会管理多台主机,而ansible可管理的主机集合就叫做inventory.在ansible中,描述你主机的默认方法是将它们列在一个文本文件中,这个文件叫inventory文件. 一个简单的inventory文件可能只包含一组主机名的列表,如下: ftp.testansible.com samba.testansible.com mail.t

Ansible 之 概念和常用模块介绍

1  概述 ansible是新出现的自动化运维工具,基于Python开发,集合了众多运维工具(puppet.cfengine.chef.func.fabric)的优点,实现了批量系统配置.批量程序部署.批量运行命令等功能. ansible是基于模块工作的,本身没有批量部署的能力.真正具有批量部署的是ansible所运行的模块,ansible只是提供一种框架.主要包括如下的特性: (1).连接插件connection plugins:负责和被监控端实现通信: (2).host inventory:

Ansible的安装、配置及常用模块介绍

Ansible的安装.配置及常用模块介绍 ansible安装方式 1. ansible安装常用两种方式,yum安装和pip程序安装 这里提供二种安装方式,任选一种即可: 1.使用yum安装 yum install epel-release -y yum install ansible –y 2. 使用pip(python的包管理模块)安装 pip install ansible   #如果没pip,需先安装pip.yum可直接安装: yum install python-pip pip inst

Ansible 常用模块详解(3)

title: Ansible 常用模块详解(3) date: 2018-12-01 15:22:11 tags: Ansible categories: Ansible copyright: true --- Ansible是新出现的自动化运维工具,基于Python开发,集合了众多运维工具(puppet.cfengine.chef.func.fabric)的优点,实现了批量系统配置.批量程序部署.批量运行命令等功能,ansible是基于模块工作的,本身没有批量部署的能力,真正具有批量部署的是an

ansible常用模块详解

ansible常用模块详解: ansible <host-pattern> [-m module_name] [-a args] [options] #ansible命令格式  指定主机组或ip地址  指定调用模块   传递给模块的参数   ansible-doc -l #列出可用模块 ansible-doc -s model_name #查看指定模块详细用法 command:ansible默认模块,对指定主机执行命令,不能理解特殊字符 例:ansible web -a 'date' #对we

python基础31[常用模块介绍]

python基础31[常用模块介绍] python除了关键字(keywords)和内置的类型和函数(builtins),更多的功能是通过libraries(即modules)来提供的. 常用的libraries(modules)如下: 1)python运行时服务 * copy: copy模块提供了对复合(compound)对象(list,tuple,dict,custom class)进行浅拷贝和深拷贝的功能. * pickle: pickle模块被用来序列化python的对象到bytes流,从

ansible常用简易介绍

ansible常用指令 ansible:用于执行ansible常用模块的指令 ansible-doc:查看ansible模块文档 ansible-galaxy:下载一些东东给ansible用 一般现成的程序在 galaxy.ansible.com 网站 ansible-playbook:核心,常用于批量部署机器服务和初始化(需要利用yaml语法写一些任务和规则) ansible-pull:拉取 ansible-push:推送 ansible-vault:给文件加密 ansible-console