Difference between revisions of "Install & Configure Ansible in Linux Ubuntu 18"

From Gejoreuy
Jump to navigation Jump to search
(Created page with "https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-ansible-on-ubuntu-18-04")
 
Line 1: Line 1:
 
https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-ansible-on-ubuntu-18-04
 
https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-ansible-on-ubuntu-18-04
 +
 +
== Purpose ==
 +
 +
This page describes the process of installing Ansible in Linux Ubuntu 18.
 +
<br>And some example how to use Ansible to do some work in managing another servers.
 +
<br>Ansible is an open source IT Configuration Management, Deployment & Orchestration tool.
 +
<br>For more details, please see it at [https://www.ansible.com/ Ansible].
 +
 +
== Preparation ==
 +
 +
We'll do this installation in a server Linux Ubuntu 18 which called server01.
 +
<br>And we'll use another two servers as test to be managed, called as server02 and server03.
 +
 +
<pre>
 +
server01 : 10.0.0.4
 +
server02 : 10.0.0.5
 +
server03 : 10.0.0.6
 +
 +
== Step by Step ==
 +
 +
Enable our system’s list of sources.
 +
 +
<pre>
 +
root@server01:~# apt-add-repository ppa:ansible/ansible
 +
</pre>

Revision as of 11:03, 10 June 2020

https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-ansible-on-ubuntu-18-04

Purpose

This page describes the process of installing Ansible in Linux Ubuntu 18.
And some example how to use Ansible to do some work in managing another servers.
Ansible is an open source IT Configuration Management, Deployment & Orchestration tool.
For more details, please see it at Ansible.

Preparation

We'll do this installation in a server Linux Ubuntu 18 which called server01.
And we'll use another two servers as test to be managed, called as server02 and server03.

server01 : 10.0.0.4
server02 : 10.0.0.5
server03 : 10.0.0.6

== Step by Step ==

Enable our system’s list of sources.

<pre>
root@server01:~# apt-add-repository ppa:ansible/ansible