• Home
  • Ubuntu 18.04
    • Whats New?
    • Upgrade Ubuntu
    • Install Java
    • Install Node.js
    • Install Docker
    • Install Git
    • Install LAMP Stack
  • Tutorials
    • AWS
    • Shell Scripting
    • Docker
    • Git
    • MongoDB
  • Funny Tools
  • FeedBack
  • Submit Article
  • About Us
TecAdmin
Menu
  • Home
  • Ubuntu 18.04
    • Whats New?
    • Upgrade Ubuntu
    • Install Java
    • Install Node.js
    • Install Docker
    • Install Git
    • Install LAMP Stack
  • Tutorials
    • AWS
    • Shell Scripting
    • Docker
    • Git
    • MongoDB
  • Funny Tools
  • FeedBack
  • Submit Article
  • About Us

How to Install Ansible on Ubuntu 18.04 (Bionic)

Written by Rahul, Updated on August 24, 2018
General Articles

Ansible is an automation tool for managing multiple remote hosts from the single machine. It provides you with an easy to configure for a large number of remote hosts. For example, you are performing the same tasks over multiple machines, Ansible provides you the option to automate these tasks.

This tutorial will help you to install Ansible on Ubuntu 18.04 (Bionic) LTS systems.

Step 1 – Configure SSH Access

You can configure key based ssh for the remote Linux Ansible hosts. So password will not be required for SSH. Ansible also allows you to use a password for ssh, but key-based ssh is more secure.

Generate a ssh key pair on your Ansible server:

ssh-keygen

Copy the public key to all your remote hosts you need to connect via this ssh key.

ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected]_host

Step 2 – Install Ansible on Ubuntu 18.04

Ansible provides its official PPA for the installation on Ubuntu systems. Run the following command to configure Ansible PPA to your Ubuntu 18.04 system.

sudo apt-add-repository ppa:ansible/ansible

After adding the Ansible repository execute below commands to install.

sudo apt update
sudo apt install ansible

Step 3 – Configure Ansible Hosts & Groups

Your server is ready with Ansible for remote host management and automation. You can have a number of hosts you need and manage them with single Ansible server.

Here you need to define your remote systems in Ansible hosts file (/etc/ansible/hosts). You can also make groups of hosts with similar types. Here you need to properly organize your hosts into groups. Groups are used for performing one task on all remote hosts defined under it.

Edit Ansible hosts configuration file. For exmaple:

sudo nano /etc/ansible/hosts

Add your hosts and organize them with groups. A host can be added under multiple groups.

[webservers]
web-host1
web-host2

[dbservers]
db-host1

The below image will help you to understand group and hosts under a group.

Ansible Group and Hosts

Single Host Vars Configuration

You need to define settings for your hosts. The host-specific file must be with the same name as host (eg: web-host1) under the host_vars directory.

sudo mkdir /etc/ansible/host_vars
sudo vi /etc/ansible/host_vars/web-host1

Add the SSH settings to this file for the web-host1.

ansible_ssh_host: 192.168.1.15
ansible_ssh_port: 22
ansible_ssh_user: root

Ansible Host Settings

In case you don’t have used Step 1 for the ssh connection for this host. You can also add one of the below methods to web-hosts1 configuration file for the authentication.

ansible_ssh_pass: secret_password
ansible_ssh_private_key_file: /home/rahul/.ssh/aws.pem

Group Vars Configuration

You can configure common variable settings of a Group under group configurations. The group file name must be same as the group name (eg: webservers) under group_vars directory.

sudo mkdir /etc/ansible/group_vars
sudo vi /etc/ansible/group_vars/webservers

Add the common variables to this file used by all the hosts added under this group.

ansible_ssh_port: 22
ansible_ssh_user: root

Step 4 – Test Ansible Setup

Your Ansible setup is ready for testing. To test all hosts connectivity using ping module like:

ansible -m ping all

To test connectivity for specific host or group of hosts

ansible -m ping web-host1        ## Specific host 
ansible -m ping webservers       ## Specific group 

You can also run a command using shell module. For example, test the free memory on web-host1. You can also perform the same task for a group. Just use group name instead of hostname.

ansible -m shell -a 'free -m' web-host1

Install Ansible on Ubuntu 18.04

Share it!
Share on Facebook
Share on Twitter
Share on Google+
Share on Reddit
Share on Tumblr
Rahul
Rahul
Connect on Facebook Connect on Twitter Connect on Google+

I, Rahul Kumar am the founder and chief editor of TecAdmin.net. I am a Red Hat Certified Engineer (RHCE) and working as an IT professional since 2009..

Leave a Reply

Cancel reply

Popular Posts

  • How to Setup Squid Proxy Server on Ubuntu 18.04 & 16.04
  • How To Install Zabbix Agent on Debian 9/8
  • How to Install and Configure Squid Proxy on Debian 9
  • How to Remove “public/index.php” from URL in Laravel
  • How To Install Wine 3 on Debian 9 (Stretch)
All rights reserved. © 2013-2018 TecAdmin.net. This site uses cookies. By using this website you agree our term and services