Limited Time Offer
15%
Off
Here are all the actual test exam dumps for IT exams. Most people prepare for the actual exams with our test dumps to pass their exams. So it's critical to choose and actual test pdf to succeed.
Suggested Answer:
by whitebeard pirate at Jan 19, 2025, 08:21 AM
Comments
whitebeard pirate
2025-01-19 08:21:35mkdir /home/student/roles
mkdir /home/student/collections
cd /home/student/ansible
mkdir -p /home/student/ansible
#create the inventory file
vim /home/student/ansible/inventory
# Add the following content to define the inventory:
[dev]
servera.lab.example.com
[test]
serverb.lab.example.com
[prod]
serverc.lab.example.com
[balancers]
serverd.lab.example.com
[webservers:children]
prod
#create the ansible configuration file
vim /home/student/ansible/ansible.cfg
# Add the following content to configure Ansible:
[defaults]
inventory=/home/student/ansible/inventory
remote_user=devops
roles_path=/home/student/ansible/roles:/usr/share/ansible/roles
collections_paths=collections:/usr/share/ansible/collections
[privilege_escalation]
become=True
become_method=sudo
become_user=root
become_ask_pass=False
#verify
ansible version
ansible all --list-hosts
ansible-inventory --graph
ansible-inventory --list -i /home/student/ansible/inventory
ansible all -m ping -I /home/student/ansible/inventory
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Commenting
You can sign-up / login (it's free).