Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!
We spend hours on Instagram and YouTube and waste money on coffee and fast food, but wonât spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!
Learn from Guru Rajesh Kumar and double your salary in just one year.
Program 1 â Write a Ansible Adhoc Commands to create a group called âdeploy
How to verify?
ansible localhost -m ansible.builtin.group -a”name=deploy state=present”
$ more /etc/group | grep deploy
Program 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.
How to verify?
ansible -m user -a “name=deploy-user group=deploy shell=/bin/bash”
$ more /etc/passwd | grep deploy-user
Program 3 â Write a Ansible Adhoc commands install package named âhttpdâ in RHEL/centos.
How to verify?
ansible localhost -m yum -a”name=httpd state=present”
$ which httpd
Program 4 â Write a Ansible Adhoc commands to start and enable the service named âhttpdâ
How to verify?
ansible localhost -m service -a”name=httpd state=started
$ ps -eaf | grep httpd
Program 5 â Write a Ansible commands to create a file called âindex.htmlâ in /var/www/html with some dummy html contents.
How to verify?
ansible localhost -m copy -a”src=index.html dest=/var/www/html/index.html”
Browse http://x.x.x.x:80
Program 6 â Write a Ansible commands to copy a file called âsecond.htmlâ in /var/www/html/second.html with some dummy html contents.
How to verify?
ansible all -i ACS,ARS, -m copy -a”src=index.html dest=/var/www/html/second.html” -u root -k
Browse http://x.x.x.x/second.html
Program 7 â Write a Ansible commands to install a package called âgitâ, âwgetâ.
How to verify?
ansible all -m ansible.builtin.package -a “name=git,wget”
$ which git
$ which wget
Program 8 â Write a Ansible Adhoc commands to clone git repo. https://github.com/scmgalaxy/ansible-role-template.
How to verify?
ansible all -m ansible.builtin.git -a”repo=https://github.com/scmgalaxy/ansible-role-template clone=yes”
$ ls
Program 9 â Write a Ansible commands to reboot a self machine.
– ansible all -m reboot -a “name=reboot”
Program 10 â Write a Ansible commands to touch a file called âdevopsschool.txtâ in /opt/ and delete after using ansible adhoc command.
-ansible all -m ansible.builtin.file -a “path = /opt/devopsschool.txt state = touch “
-ansible all -m ansible.builtin.file -a “path = /opt/devopsschool.txt state = absent”