企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
# ansible简介 [官方网站](https://docs.ansible.com/) [ansible官方示例](https://github.com/ansible/ansible-examples) [ansible模块](http://docs.ansible.com/ansible/list_of_all_modules.html) [Ansible中文权威指南](http://ansible-tran.readthedocs.io/en/latest/) 运维软件层次划分 Ansible是一个由python开发的`配置管理`和`远程执行`工具。 ### 架构 ### ansible特点 - 轻量级,不需要安装客户端,通过ssh通信; - 基于模块工作,模块可以由任何语言开发; - 不仅支持命令行使用模块,也支持yaml格式的playbook; - 支持sudo - 幂等性,同一台服务器多次执行同一个palybook是安全的; - 提供UI(浏览器图形化)[www.ansible.com/tower](http://www.ansible.com/tower) 10台内的主机免费 - 开源UI [https://github.com/alaxli/ansible\_ui](https://github.com/alaxli/ansible_ui) 文档 > 对于每一个任务,ansible都是在所有主机间并行执行的 > 在下一个任务开始之前,ansible会等待所有主机都完成上一个任务 > ansible的任务会按照指定顺序来运行 参考文档 <http://www.cnblogs.com/createyuan/p/4218838.html> <http://sofar.blog.51cto.com/353572/1579894> <https://www.linuxyw.com/393.html>