Lab Session
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
http://15.206.127.94/
1.Write a Ansible Adhoc Commands to create a group called “deploy
ansible localhost -m ansible.builtin.group -a”name=deploy state=present” -b
2.Write a Ansible Adhoc Commands to create a user called “deploy-user” which is part of group called “deploy” and with /bin/bash shell.
ansible localhost -m user -a”name=ramya password=abc@123 groups=deploy state=present shell=/bin/bash” -b
3 . Write a Ansible Adhoc commands install package named “httpd” in RHEL/centos.
ansible localhost -m yum -a”state=present name=httpd” -b
4 . Write a Ansible Adhoc commands to start and enable the service named “httpd”
ansible localhost -m service -a”name=httpd state=started” -b
5.Write a Ansible commands to create a file called “index.html” in /var/www/html with some dummy html contents.
ansible localhost -m copy -a”dest=/var/www/html src=index.html” -b
6 .Write a Ansible commands to copy a file called “second.html” in /var/www/html/second.html with some dummy html contents.
ansible localhost -m copy -a”dest=/var/www/html src=second.html” -b
7 .Write a Ansible commands to install a package called “git”, “wget”.
ansible localhost -m yum -a”state=present name=git” -b
ansible localhost -m yum -a”state=present name=wget” -b
8 .Write a Ansible Adhoc commands to clone git repo. https://github.com/scmgalaxy/ansible-role-template.
ansible localhost -m ansible.builtin.git -a”repo=https://github.com/scmgalaxy/ansible-role-template dest=/home/centos/sandhya” -b
9 . Write a Ansible commands to reboot a self machine.
ansible localhost -m reboot