Ansible Tutorial | Ansible Playbook Challenge #1 | Tech Arkit

preview_player
Показать описание
Ansible playbook challenge for learners, see my previous videos and write this below requirement in playbook your own do no try to copy from any other sites.

Its your own learning method.

#ansible #challenge #automation

Node scope : Node3
Requirement:
Install Web server latest version
Install and configure MariaDB Server
Create new Database called inventory
Create table with few columns (sn, servname, ip, location, env, location, remarks)
User node3 localuser anisbu1 and install above application

Ansible Automation Playlist:
RHCSA - Red Hat Certified System Administrator PlayList:

Follow Us on Social Media

Post your topic, we will make videos for you

Ansible Course
Automation with Ansible Course

Ansible Lab Setup

Ansible Inventory configuration

Ansible Ad-Hoc Commands with examples

Writing your first Ansible playbook guide

How to variables in Ansible playbook

Conditionals and Loops of Ansible playbooks
Рекомендации по теме
Комментарии
Автор

Hi good teaching. Can you please upload, how to ssh keys copy from master to multiple node severs at a time .

durgamkhasim
Автор

--- #Install packages
- hosts: newserver
user: ansible1
become: yes
connection: ssh
tasks:
- name: Install httpd and mariadb packages
action: yum name="{{item}}" state=installed
with_items:
- httpd
- mariadb
- wget

...

Half done 😅


.php means like index.html ???

ashishgupta