Ansible系列基础篇 1.3、命令介绍
一、总体说明
命令 | 说明 |
ansible | 主程序,临时命令执行工具 |
ansible-playbook | 定制自动化任务,编排剧本工具 |
ansible-doc | 查看配置文档,模块功能查看工具 |
ansible-vault | 文件加密工具 |
ansible-config | 查看、编辑管理ansible的配置文件 |
ansible-galaxy | 下载/上传优秀代码或者Roles模块的官网平台 |
ansible-inventory | 查看被控制端主机清单的详细信息,返回JSON格式 |
ansible-pull | 涉及到ansible的另一种的工作模式:pull模式(默认使用的是push模式),适用于数量巨大的机器需要配置的情况 |
ansible-console | 基于Console界面与用户交互的执行工具 |
二、ansible
三、ansible-playbook
四、ansible-doc
五、ansible-vault
六、ansible-config
七、ansible-galaxy
八、ansible-inventory
九、ansible-pull
十、ansible-console
root@all (1)[f:5]$ cd pe01 # 进入分组
root@pe01 (1)[f:5]$
当前的使用用户@当前所在的Inventory中定义的组,默认是all分组(Inventory中all组所有主机的数量)[forks:线程数]$
ansible-connection # 这是一个插件,指定执行模式(测试用)
ansible-test #
参考:
1. https://www.cnblogs.com/brianzhu/p/10164379.html
1