安装并配置ansible
在控制节点上安装并配置Ansible,要求如下: |
安装所需的软件包:
创建静态inventory文件/home/student/ansible/inventory ,要求如下:
servera属于dev主机组
serverb属于test和balancers主机组
serverc和serverd属于prod主机组
prod主机组属于webservers机组
创建ansible配置文件/home/student/ansible/ansible.cfg ,要求如下:
使用/home/student/ansible/inventory清单文件
角色存放在/home/student/ansible/roles/目录
1.安装ansible
2.创建清单目录
3.创建清单文件
vim /home/student/ansible/inventory
cp /etc/ansible/ansible.cfg /home/student/ansible/
[defaults]
inventory = /home/student/ansible/inventory
roles_path = /home/student/ansible/roles/
[privilege_escalation]
become=True
become_method=sudo
become_user=root
become_ask_pass=False
原文地址:https://blog.csdn.net/a17783481239/article/details/134532073
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_8483.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!