Site icon TechGit

How to Install Ansible on Ubuntu Linux

How to Install Ansible on Ubuntu Linux. Ansible is an IT automation tool. It can configure systems, deploy software, and orchestrate more advanced IT tasks such as continuous deployments or zero downtime rolling updates. Ansible’s main goals are simplicity and ease-of-use. It also has a strong focus on security and reliability, featuring a minimum of moving parts, usage of OpenSSH for transport (with an accelerated socket mode and pull modes as alternatives), and a language that is designed around auditability by humans–even those not familiar with the program.

Ansible 2.4.1 “Dancing Days” – TBD

Install Ansible

Run the following commands in terminal to install the latest version of Ansible on Ubuntu Linux:

$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt install software-properties-common
$ sudo apt-add-repository ppa:ansible/ansible
$ sudo apt-get update
$ sudo apt install ansible

Once installed, run the following command to check the version of installed package:

$ ansible --version

How to Install Ansible on Ubuntu Linux originally posted on Source Digit – Latest Technology, Gadgets & Gizmos.

FacebookTwitterTumblrRedditLinkedInHacker NewsDiggBufferGoogle ClassroomThreadsXINGShare
Exit mobile version