Got a question on the topic? Please share it in the comment section below and our experts will answer it for you. For Edureka DevOps Training and Certification curriculum, Visit our Website: bit.ly/2O59dHy Use code "TH-cam20" to get Flat 20% off on this training.
I had a difficult time understanding other tutorials. This is by far the best...A patient and gentle instructor and a great presentation of the subject matter .Thank you edureka!
This is an excellent trainer , cruising at a constant pace with perfectly scripted language, by far you are one of the best trainers, I am yet to implement the first hands on. Amazing.
Thanks for the compliment Sujan! We are glad you loved the video. Do subscribe and hit the bell icon to never miss an update from us in the future. Cheers!
Hey Vishal, thanks for the wonderful feedback! We're glad you found our tutorials useful. Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
Excellent presentation, explanation and good examples. so much thankful to edureka team. here I had few doubts. 1) how to run build.xml in group of nodes using playbook script? ( example please) 2) can I run services in Windows machine using playbook script? 3) can I set ip of Windows machine in /etc/Ansible/hosts file and run the yml script? thanks in advance....🙏🙏🙏
+Srinu Vasu, thanks for checking out our tutorial and for the wonderful feedback! Here are the answers to your queries: Q1: If you want to deploy an application or software for the entire group, you have to add the inventory in /etc/ansible/hosts. Q2: Yes, you can run the ansible playbooks in windows also. Q3: Please refer to the below given link to a document that will help you setup windows node in ansible inventory: docs.google.com/document/d/1C5emhXamCe9wMPwIFj_xg34srT8ZrNvOqhWeVNvFJV8/edit?usp=sharing Hope this helps. Cheers!
Thanks for the compliment Srikanth! We are glad you loved the video. Do consider subscribing and hit the bell icon to never miss an update from us in the future. Cheers!
Hey Swadhikar, we are glad you loved the video. Do subscribe to the channel and hit the bell icon to never miss an update from us in the future. Cheers!
Hey Lucas, thanks for the wonderful feedback! We're glad we could be of help. You might also like these related tutorials: th-cam.com/play/PL9ooVrP1hQOGMf-ODuo15YFz2HZsWCO8y.html. Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
hi Reshma Akhtar Ahmed you explain so nicely that anyone can understand that even if he don't know anything whats the difference b/w jenkins and ansible tower can you make some videos on monitoring tools like zabbix
Hey Saket, thanks for checking out our tutorial. Jenkins can be used in your machine environment and deployment process is very straightforward (such as Heroku or iron that is configured outside of your team). Jenkins may be enough. You can write a custom script that does a deploy as the final build step (or a chained step). Whereas, for Ansible tower you only need to "deploy" without needing to build/test, Ansible might be enough. For instance, you can run a deploy from the commandline or using Ansible Tower. This is great for small projects, static sites, etc. Hope this helps. P.S: We have communicated your video request to our team and we might come up with it in the future. Do subscribe to stay posted. Cheers!
Thank you so much : ) We are glad to be a part of your learning journey. Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
Awesome video Reshma. Just a clarification, First playbook you used "package" as module and later "pip" and "apt" as module. Can we use 'package' to install apache as well right? Even we can use directly 'CMD". Please clarify.
Hey jnnjnj, Package, apt and pip are different modules, in Ansible. Package uses the default repository on which your system refers to. So, you can use package to install apache. Hope this helps!
loved the video..got very gud insight about Ansible , saw many videos but this is the one the best ansible tutorial so far. 1 question though , from where i can learn about all playbook commands ?
Hey Vikash, thanks for the wonderful feedback! We're glad you found our tutorials useful. We do not have such a tutorial at the moment, but you can access it as part of our course here: www.edureka.co/devops. Hope this helps. Cheers!
Excellent stuff. You made it very easy for Beginners to understand What Ansible is and how easy it is to learn. May I please know how can I signup for full series of Ansible tutorial to start from basics till its advance topics.
Thank you Karandeep! We try to elaborate and make understanding easy. Browse through our channel, there are other videos that you might find interesting. Cheers :)
Thanks for this video! Just a suggestion, it might be helpful if you could add more real time scenario or some flow to explain all points under "How ansible can be used for"?
Hey Vipul, thanks for checking out our tutorial and for sharing feedback. We have communicated this to our team and we might come up with such a tutorial in the future. Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
Good Presentation. I had certain doubts on this. I created a db server mysql alone and I didn't install any other packages. So my yaml file looked like Install myql package not anything. But I am not able to login into myql in the remote computer. I could install other software such as nginx. Please help me on this.
Hey Sriram, thanks for checking out our tutorial! We're glad you liked it. Here's the answer to your queries. Make sure that mysql is working fine using , Sudo serive mysqld status , If its inactive please start the service using sudo seervice mysqld start , The sytax for logging to mysql is mysql -uroot -p ; and now it will prompt for the password given while creating the database. Hope this helps. Cheers!
Thank you for watching our video. We try to make our videos such that beginners can also take the most out of it. Do subscribe, like and share to stay connected with us. Cheers :)
Thanks for the compliment, Yamuna! We are glad you loved the video. Do subscribe to the channel and hit the bell icon to never miss an update from us in the future. Cheers!
Hey Srujan, sorry for the delay. It is getting installed from the apt-get package. The apt-get utility is a powerful and free package management command line program, that is used to work with Ubuntu’s APT (Advanced Packaging Tool) library to perform installation of new software packages, removing existing software packages, upgrading of existing software packages and even used to upgrading the entire operating system. Make sure you do a 'apt-get update' to avail new software packages. Hope this helps!
Well I have a question - if ssh is not available how can ansible will play its role and how it is told as agentless. ssh is there that's why it is able to communicate. So it depends, right? So how can you say it's agentless
Hi Avi, Ansible cannot communicate without an agent. And ssh is not an agent. Agents are third party tools and ssh is far from being a tool on its own. Hope this is helpful.
Fantastic presentation, thanks! One question though: Is there any reason we would use the yum or apt-get modules in a playbook rather than the generic package module used in the example here? Or should we simply only ever use the generic package module?
Hey Naseem, thanks for the wonderful feedback! Here's the answer to your query: The generic package module has a auto detect feature to identify whether ansible should use apt-get or yum package manager for downloading the package. For e.g if your node machines are ubuntu machines, it will automatically use the apt package manager for that purpose or if they are CentOS machines, it will use the yum package manager. It is advisable to use the generic package module when you have a mixture of ubuntu or CentOS node machines and you want to install packages in them at once. But, the one important thing you should keep in mind while you are using the generic package module is that you write the proper and exact name of the package that you want to download because the generic package module won't be able to identify your desired package if you have mentioned the package name even slightly different. However, apt-get or yum has the the ability to translate the package name in order to find the closest match of package that you have mentioned. Hope this helps. Cheers!
Hey, Ansible has lot of benefits over shell scripting, like it makes parallel execution across multiple machines easier, it offers library of ready-made idempotent 'modules', Automatic step-by-step reporting and tagging.
Hey, the class is excellent, easy to understand. I tried installing the lamp stack, but getting few errors. Can any one provide me a yml script for installing java and LAMP stack. Thank you.
Hey Santosh, thanks for the wonderful feedback! We're glad you liked our tutorial. Please refer to the below given link for the yaml file to install LAMP:docs.google.com/document/d/1gkdKy1ELWbMst4raZnTb1l5nEv7wD5UJyelS5wg8vC0/edit?usp=sharing Hope this helps. Cheers!
Hey Santosh, thanks for checking out our tutorial! We do not have such a tutorial at the moment, but we have shared your request with our team and we might come up with it in the future. Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
Hey Imran, sorry for the delay. Ansible needs to be installed on only on server site and client configuration should comprise of SSh and python implemented frameworks Hope this helps!
Hey Othman, you can go to the official website of that particular software. They already have the package names mentioned. And, if you are using CentOS you can use "yum list all" to see the name of all packages. Hope this helps. Cheers!
An API also is known as Application Program Interface is basically code that can connect the code you write for your front end like for example a website to the database where you store the data you collect from your users. Hope that solves your query.
What I understood that Configurations managements and provisioning are the same concepts, please it is the same confirm and if it wrong give me the right answer and tell me the different in sample way, Thanks
Hey Othman, thanks for checking out our tutorial! Well, you are almost right! They basically do the same thing. Configuration Management is the second step after Provisioning. For e.g: Installing Apache HTTP server on host machines is provisioning; Updating it onto version 2.4.25 is Configuration Management. Hope this answers your query. Cheers!
Hey there, Excellent tutorial!! Just one doubt: You installed MySQL server using playbook, but I didn't see you specifying the MySQL root password. what will be the root password of mysql-server installation?
Hey Sreekanth, thanks for checking out our tutorial! By default the password is "root" itself. However, you can change the password later on. Hope this helps. Cheers!
Hey Sainath, sorry for the delay. Refer the following video on ansible installation: th-cam.com/users/results?search_query=ansible+installation+edureka . Hope this helps!
I believe NASA is not Monitoring the earth or universe. You may say, they are observing and learning about the earth or universe. Marvel Movies impact... :)
Got a question on the topic? Please share it in the comment section below and our experts will answer it for you. For Edureka DevOps Training and Certification curriculum, Visit our Website: bit.ly/2O59dHy Use code "TH-cam20" to get Flat 20% off on this training.
since I'm Linux administrator I understood very fast , I'm very happy they way she explained, its very clear and neat manner
I had a difficult time understanding other tutorials. This is by far the best...A patient and gentle instructor and a great presentation of the subject matter .Thank you edureka!
this woman is amazing. i would love more tutorials from her.
This is an excellent trainer , cruising at a constant pace with perfectly scripted language, by far you are one of the best trainers, I am yet to implement the first hands on. Amazing.
Thanks for the compliment Sujan! We are glad you loved the video. Do subscribe and hit the bell icon to never miss an update from us in the future. Cheers!
Thank you Reshma. Nice tutorial. Quick hit. Got me going.
You're welcome 😊 Glad it was helpful!!!
1.How can I run my playbook in particler multiple hosts ?
2.How can I add master as a slave machine?
please give me examples
Extremely well done, clear concise tutorial. Thank you very much for your step by step approach to teaching this tool.
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
I recently went through some videos from Edureka, and so far, videos are consistently well organized and presentation is crisp.
Hey Vishal, thanks for the wonderful feedback! We're glad you found our tutorials useful.
Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
Very good example from 41:00 onwards!
Thank you :)
Excellent Video! Well presented and Articulate. THANK YOU!
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
At 52:49 All does not mean All node machines. Basically we can use any word here. It just call the "group names" in Ansible Inventory file.
Great video for Ansible playbook 101!
Thank you Edureka to example
Glad it was helpful!
Very useful. Thank you for your time.
good one though the actual Ansible starts after 45 minutes, so the experienced developers can skip the first 45 mins.
Excellent presentation, explanation and good examples. so much thankful to edureka team. here I had few doubts.
1) how to run build.xml in group of nodes using playbook script? ( example please)
2) can I run services in Windows machine using playbook script?
3) can I set ip of Windows machine in /etc/Ansible/hosts file and run the yml script?
thanks in advance....🙏🙏🙏
+Srinu Vasu, thanks for checking out our tutorial and for the wonderful feedback! Here are the answers to your queries:
Q1: If you want to deploy an application or software for the entire group, you have to add the inventory in /etc/ansible/hosts.
Q2: Yes, you can run the ansible playbooks in windows also.
Q3: Please refer to the below given link to a document that will help you setup windows node in ansible inventory:
docs.google.com/document/d/1C5emhXamCe9wMPwIFj_xg34srT8ZrNvOqhWeVNvFJV8/edit?usp=sharing
Hope this helps. Cheers!
Vey crisp ,detailed and systematic presentation.Your team is a doing a great job.Keep up the good work!
I never had a session like this in my life extremely excellent job Reshma !
Fantastic, I am comfortable Ansible now. Thanks a lot
Thank you reshma and edureka for a clear video and great explanation
Thanks for the compliment Srikanth! We are glad you loved the video. Do consider subscribing and hit the bell icon to never miss an update from us in the future. Cheers!
very good explanation for basics. thanks a lot
can anyone tell me what is redhat ansible 410 course as I'm from chemical engineering background wanted to switch into IT industry.
Great tutorial to begin with. Clearly explained concepts!! Thank you
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
Very Nice way of presenting a difficult topic. Thank you so much :)
Awesome concept understanding comparing other videos of this
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
thanks i really enjoyed learning
Nice presentation in the simplest way .
Extremely knowledgeable trainer and hence the concise presentation. Well done!
Hey Swadhikar, we are glad you loved the video. Do subscribe to the channel and hit the bell icon to never miss an update from us in the future. Cheers!
What a tutorial!!!!
Thanks a lot for sharing and good job!!!! :D
Hey Lucas, thanks for the wonderful feedback! We're glad we could be of help.
You might also like these related tutorials: th-cam.com/play/PL9ooVrP1hQOGMf-ODuo15YFz2HZsWCO8y.html.
Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
You teach so well. Thank you
very interesting, however you can safely skip the first 13 minutes if you already have a basic idea of what Automation means.
Thank you for watching our videos and appreciating our work. Do subscribe to our channel and stay connected with us. Cheers :)
Excellent overview. Many thanks
thank you so much.. it was fun and great learning. :)
Thanks for the wonderful presentation with lots of informative content explained in detail
Thanks a million Edureka for simplest explanation. Pretty much familiar with the concept now.
Hey Aniruddha, we are glad you loved the video. Do subscribe and hit the bell icon to never miss an update from us in the future. Cheers!
Thank you for you video...Cheers from Brazil.
Hey, glad you loved the video. Do subscribe and hit the bell icon to never miss an update from us in the future. Cheers!
Done, tks!
Thanks for the presentation with good explanation of concepts :)
Its really great video.
Thanks a lot Reshma
Best tutorial on Ansible I found! Thank you so much. Clear explanations and demystifying these jargons is really appreciated.
Hey Carol, we are glad you feel this way. Do subscribe and hit the bell icon to never miss an update from us in the future. Cheers!
Thanks for the tut. It was great help to start with ansible.
Hey CRis, thank you for watching our video. Do subscribe and stay connected with us. Cheers :)
Clearly explained with hands-on. Thank u edureka Team👏
hi Reshma Akhtar Ahmed
you explain so nicely that anyone can understand that even if he don't know anything
whats the difference b/w jenkins and ansible tower
can you make some videos on monitoring tools like zabbix
Hey Saket, thanks for checking out our tutorial.
Jenkins can be used in your machine environment and deployment process is very straightforward (such as Heroku or iron that is configured outside of your team). Jenkins may be enough. You can write a custom script that does a deploy as the final build step (or a chained step).
Whereas, for Ansible tower you only need to "deploy" without needing to build/test, Ansible might be enough. For instance, you can run a deploy from the commandline or using Ansible Tower. This is great for small projects, static sites, etc.
Hope this helps.
P.S: We have communicated your video request to our team and we might come up with it in the future. Do subscribe to stay posted. Cheers!
Thanks a Lot ! Very nicely explained.
Hey Neelesh, we are glad you loved the video. Do subscribe and hit the bell icon to never miss a video from us in the future. Cheers!
Thank you. I appreciate you...
Thank you so much : ) We are glad to be a part of your learning journey. Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
Awesome video Reshma. Just a clarification, First playbook you used "package" as module and later "pip" and "apt" as module.
Can we use 'package' to install apache as well right? Even we can use directly 'CMD". Please clarify.
Hey jnnjnj, Package, apt and pip are different modules, in Ansible. Package uses the default repository on which your system refers to. So, you can use package to install apache. Hope this helps!
Very nice Video for beginners !!!!!
Hey Ankit! Thank you for the kind words. Stay updated with all our content by subscribing to our channel. Thanks :)
loved the video..got very gud insight about Ansible , saw many videos but this is the one the best ansible tutorial so far.
1 question though , from where i can learn about all playbook commands ?
Hey Vikash, thanks for the wonderful feedback! We're glad you found our tutorials useful.
We do not have such a tutorial at the moment, but you can access it as part of our course here: www.edureka.co/devops.
Hope this helps. Cheers!
Thank you Reshma for bringing out the best.Being beginner, It is so informative for me. Cheers!!!
Hey Ravindra, thank you for appreciating our efforts. Do subscribe to our channel and stay connected with us. Cheers :)
Excellent stuff. You made it very easy for Beginners to understand What Ansible is and how easy it is to learn. May I please know how can I signup for full series of Ansible tutorial to start from basics till its advance topics.
Hey Tushar, thank you for appreciating our work. You can check out our DevOps course here: www.edureka.co/devops
Hope this helps :)
Very nice,Thank u
Superb Nice explanation!!!
good tutorial. very detailed explanation
Thank you Karandeep! We try to elaborate and make understanding easy. Browse through our channel, there are other videos that you might find interesting. Cheers :)
Ty a lot, very clear and concise
Very well explained.
Thank you so much
Fantastic session..
Beautiful video. Very clear , thanks
Hey Anusha, thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
Excellent video and well presentation.
Nice tutorial. Thanks a lot for sharing.
Hey Malathi, thank you for having a look at our tutorial. We are glad to know that you liked it. Do subscribe and stay connected with us. Cheers :)
Thanks for this video! Just a suggestion, it might be helpful if you could add more real time scenario or some flow to explain all points under "How ansible can be used for"?
Hey Vipul, thanks for checking out our tutorial and for sharing feedback.
We have communicated this to our team and we might come up with such a tutorial in the future.
Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
Awesome, Thanks alot!!
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
Good Presentation. I had certain doubts on this. I created a db server mysql alone and I didn't install any other packages.
So my yaml file looked like Install myql package not anything. But I am not able to login into myql in the remote computer. I could install other software such as nginx. Please help me on this.
Hey Sriram, thanks for checking out our tutorial! We're glad you liked it. Here's the answer to your queries.
Make sure that mysql is working fine using , Sudo serive mysqld status , If its inactive please start the service using sudo seervice mysqld start , The sytax for logging to mysql is mysql -uroot -p ; and now it will prompt for the password given while creating the database.
Hope this helps. Cheers!
Thank you very much for good explanation .It helps beginners like me
Thank you for watching our video. We try to make our videos such that beginners can also take the most out of it. Do subscribe, like and share to stay connected with us. Cheers :)
good videos for basic :)
really very nice explanation
Thanks for the compliment, Yamuna! We are glad you loved the video. Do subscribe to the channel and hit the bell icon to never miss an update from us in the future. Cheers!
Hi, in playbook you are installing some packages from LAMP stack, but where from the packages are installed.
Hey Srujan, sorry for the delay.
It is getting installed from the apt-get package. The apt-get utility is a powerful and free package management command line program, that is used to work with Ubuntu’s APT (Advanced Packaging Tool) library to perform installation of new software packages, removing existing software packages, upgrading of existing software packages and even used to upgrading the entire operating system. Make sure you do a 'apt-get update' to avail new software packages.
Hope this helps!
Thank you!!
Fantastic presentation, cheers and thanks!!!
Hey Karthikeyan, we are glad you loved the video. Do stay tuned for future updates. Cheers!
Great tutorial.
Really nice video
Well I have a question - if ssh is not available how can ansible will play its role and how it is told as agentless. ssh is there that's why it is able to communicate. So it depends, right? So how can you say it's agentless
Hi Avi, Ansible cannot communicate without an agent. And ssh is not an agent. Agents are third party tools and ssh is far from being a tool on its own. Hope this is helpful.
Great explanation. Thank you!
Hey Keenan, we are glad you loved the video. Do subscribe to the channel and hit the bell icon to never miss an update from us in the future. Cheers!
Good Stuff!! Thankyou!
Thank you so much for this 🙏
Fantastic presentation, thanks! One question though:
Is there any reason we would use the yum or apt-get modules in a playbook rather than the generic package module used in the example here? Or should we simply only ever use the generic package module?
Hey Naseem, thanks for the wonderful feedback! Here's the answer to your query:
The generic package module has a auto detect feature to identify whether ansible should use apt-get or yum package manager for downloading the package. For e.g if your node machines are ubuntu machines, it will automatically use the apt package manager for that purpose or if they are CentOS machines, it will use the yum package manager.
It is advisable to use the generic package module when you have a mixture of ubuntu or CentOS node machines and you want to install packages in them at once.
But, the one important thing you should keep in mind while you are using the generic package module is that you write the proper and exact name of the package that you want to download because the generic package module won't be able to identify your desired package if you have mentioned the package name even slightly different. However, apt-get or yum has the the ability to translate the package name in order to find the closest match of package that you have mentioned.
Hope this helps. Cheers!
hi reshma why we have to fallow ansible ? using shell we can do same thing i think !
Hey, Ansible has lot of benefits over shell scripting, like it makes parallel execution across multiple machines easier, it offers library of ready-made idempotent 'modules', Automatic step-by-step reporting and tagging.
Well explained. Thanks.
Hey Sreedharkurra, thank you for watching our video. We are glad that you liked it. Do subscribe and stay connected with us. Cheers :)
Thanks , The content was really good .
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
Hey, the class is excellent, easy to understand. I tried installing the lamp stack, but getting few errors. Can any one provide me a yml script for installing java and LAMP stack. Thank you.
Hey Santosh, thanks for the wonderful feedback! We're glad you liked our tutorial.
Please refer to the below given link for the yaml file to install LAMP:docs.google.com/document/d/1gkdKy1ELWbMst4raZnTb1l5nEv7wD5UJyelS5wg8vC0/edit?usp=sharing
Hope this helps. Cheers!
Glad you'll replied !!! I am trying to install on CentOS.. though it was helpful.. Thank you!!
Is there any possibility you have the playbook for CentOS... Thank you !!
Hey Santosh, you can use the same playbook. The only change that you want to do is replace apt by yum.
Hope this helps. Cheers!
well explained. thanks !
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
Thank you reshma
Do you'll have any video or material of installing mysql on CentOS !! Thank you !!
Hey Santosh, thanks for checking out our tutorial!
We do not have such a tutorial at the moment, but we have shared your request with our team and we might come up with it in the future.
Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
and nice video...
Hi, could you please explain how did you configure MySQL through ansible you were just installed in the tutorial
You can refer to the following link: mydbops.wordpress.com/2019/01/25/automate-mysql-8-0-installation-with-ansible/
Thanks for making the lesson simple and the knowledge assimilation is indeed valuable.
Hey Naveen, w are glad t know that you liked our video. Do subscribe and stay connected with our channel. Cheers :)
do we want to install ansible on both the client and server...
Hey Imran, sorry for the delay. Ansible needs to be installed on only on server site and client configuration should comprise of SSh and python implemented frameworks
Hope this helps!
From where you are getting the name of the packages for each application like appatch2 ?
Hey Othman, you can go to the official website of that particular software. They already have the package names mentioned. And, if you are using CentOS you can use "yum list all" to see the name of all packages.
Hope this helps. Cheers!
Good one
Thanks Reshma,what is API
An API also is known as Application Program Interface is basically code that can connect the code you write for your front end like for example a website to the database where you store the data you collect from your users. Hope that solves your query.
What I understood that Configurations managements and provisioning are the same concepts, please it is the same confirm and if it wrong give me the right answer and tell me the different in sample way, Thanks
Hey Othman, thanks for checking out our tutorial!
Well, you are almost right! They basically do the same thing. Configuration Management is the second step after Provisioning. For e.g: Installing Apache HTTP server on host machines is provisioning; Updating it onto version 2.4.25 is Configuration Management.
Hope this answers your query. Cheers!
Hey there, Excellent tutorial!!
Just one doubt: You installed MySQL server using playbook, but I didn't see you specifying the MySQL root password. what will be the root password of mysql-server installation?
Hey Sreekanth, thanks for checking out our tutorial!
By default the password is "root" itself. However, you can change the password later on.
Hope this helps. Cheers!
Hi Reshma ..have a doubt could u please help me
Hey Anil, sure you can ask us here and we will try answering them for you. Cheers :)
how do we install this ansible onto our local machine
Hey Sainath, sorry for the delay. Refer the following video on ansible installation: th-cam.com/users/results?search_query=ansible+installation+edureka .
Hope this helps!
I believe NASA is not Monitoring the earth or universe. You may say, they are observing and learning about the earth or universe.
Marvel Movies impact... :)
What is meaning of orchestration
Hi Deepak, orchestration is the term we mean when we refer to automating a lot of things at once.
hi please can you help me?
Hey Mary, definitely! Do tell us how we can be of help. Cheers!
Can you give me your email or skype ,fb etc??
Hey Mary, you can share your query here or inbox us at facebook.com/edurekaIN/.
Hope this helps. Cheers!
Outstanding lecture/tutorial. Well articulated and delivered. Simply excellent. THANK YOU.
Thank you for this excellent presentation !!!
Very well explained...