Install Ansible on Rocky Linux

May 10, 2023

Introduction

Ansible is an open-source IaC tool for infrastructure automation and application deployment. The product uses Ansible playbooks to create modules that define the system's desired state and push them to the machines in the inventory.

This article will show you how to install Ansible on Rocky Linux, a popular, enterprise-ready CentOS alternative.

Install Ansible on Rocky Linux.

Prerequisites

Install Ansible

The official Ansible installation procedure uses the pip package manager. However, the Ansible packages are also available in the AppStream base repository, so you can install them using DNF.

The following sections provide instructions for both installation methods.

Via pip

Pip is the package installer for Python and the recommended method for installing Ansible. Follow the steps below to install Ansible using pip.

1. Install the dependencies:

pip3 install setuptools-rust wheel
Installing the required dependency packages for Ansible.

2. Upgrade pip by typing:

pip3 install --upgrade pip

3. Install the main Ansible package:

pip3 install ansible

Pip completes the installation and reports on the success.

Installing Ansible with pip.

Note: Alternatively, run only the core Ansible functionalities by installing the ansible-core package:

pip3 install ansible-core

You can now configure Ansible hosts.

Via dnf Command

Like many other RHEL-based distributions, Rocky Linux uses DNF as the default package management system. Use the steps below to install Ansible with DNF.

1. Update the repository information:

sudo dnf –y update
Updating repositories in Rocky Linux.

Note: Ansible packages are in the default AppStream package repository as of Rocky Linux 9. If you still use Rocky Linux 8, add the EPEL repository before executing the command to install Ansible. To add the repository, type:

sudo dnf -y install epel-release

2. Install the Ansible package:

sudo dnf -y install ansible

The output confirms the success of the operation.

Installing Ansible using DNF.

If you want to install the core package only, type:

sudo dnf -y install ansible-core

With Ansible installed, proceed to host configuration.

Configure Ansible Hosts

The computer running an Ansible installation is called the control node. It uses SSH to pass Ansible modules to inventory machines. The following section explains how to configure the communication between the control node and the inventory.

1. Generate an SSH key pair on the control node.

ssh-keygen

When prompted, leave the passphrase empty by pressing Enter.

Generating an SSH key.

2. Copy the public key information to all Ansible hosts:

ssh-copy-id -i ~/.ssh/id_rsa.pub [username]@[host-ip]

When prompted, enter yes.

Copying the SSH public key to inventory hosts.

Note: Run the ifconfig command on a host to discover its IP address.

3. Enter the password of the user on the inventory host.

Entering the password of the inventory host user.

4. Create a new project directory on the control node and navigate to it:

mkdir test && cd test

5. Use a text editor to create an INI file for the inventory data:

nano inventory.ini

6. Add the hosts' information to the file. Use the following format:

[group1]
[alias] ansible_host=[ip-address] ansible_user=[username]

[group2]
[alias] ansible_host=[ip-address] ansible_user=[username]

...

The screenshot below shows an example inventory file using the data from this article.

Editing the inventory file in Nano.

Save the file and exit.

Note: Alternatively, you can write the inventory file as a YAML:

[group1]:
  hosts:
    [alias]:
      ansible_host: [ip-address]
      ansible_user: [username]

Test Installation

To ensure the Ansible installation is functional, test the connection by pinging inventory hosts and deploying a simple test app.

1. Ping hosts to check the connectivity:

ansible -i [inventory-file] all -m ping
The successful ping of the Ansible inventory hosts.

2. Create a YAML file for a test playbook:

nano test-playbook.yaml

3. Copy the code below and paste it into the file:

---
- name: Test Playbook
  hosts:
    - testgroup  
  become: yes
  become_method: sudo
  become_user: root      
  tasks:
  - name: Install nginx
    package:
      name:
	- nginx
      state: present

The code tells Ansible to log in as root and install the Nginx server on each machine belonging to the testgroup inventory group.

Editing test playbook YAML in Nano.

Save the file and exit.

4. Apply the playbook to the hosts listed in the inventory file. The -kK option tells Ansible to prompt for the remote user password.

ansible-playbook -i [inventory-file] test-playbook.yaml -kK

Once Ansible finishes all the requested operations, it prints the report in the PLAY RECAP section:

A successful Ansible task.

5. Switch to one of the inventory hosts, and execute an nginx command to confirm that Ansible has completed the installation successfully. For example, use the command that shows the current nginx version:

nginx -v

The output confirms that nginx exists on the system.

Testing an nginx installation.

Note: phoenixNAP's Bare Metal Cloud comes with integrated support for Ansible and other popular Infrastructure-as-Code tools.

Conclusion

The article showed you how to install the Ansible automation engine on Rocky Linux.

Next, you may want to learn how to install Kubernetes on Rocky Linux or compare Ansible with other IaC tools such as Terraform and SaltStack.

Was this article helpful?
YesNo
Marko Aleksic
Marko Aleksić is a Technical Writer at phoenixNAP. His innate curiosity regarding all things IT, combined with over a decade long background in writing, teaching and working in IT-related fields, led him to technical writing, where he has an opportunity to employ his skills and make technology less daunting to everyone.
Next you should read
How to Create a File in Ansible
May 10, 2023

Use Ansible to set up a number of tasks that the remote hosts can perform, including creating new files and directories. This tutorial covers...
Read more
Ansible vs Kubernetes
May 10, 2023

This article presents the advantages and disadvantages of two popular automation tools - Ansible and Kubernetes. Furthermore, it includes use cases for each platform...
Read more
Rocky Linux vs. AlmaLinux
May 10, 2023

Both Rocky Linux and AlmaLinux are stable and bug-for-bug compatible with RHEL. This article will show the key differences between them and help you choose...
Read more
How to Install Kubernetes on Rocky Linux
May 10, 2023

The server-centric and performance-oriented nature of Rocky Linux makes it a good choice for running containerized workloads. However, managing app...
Read more