Ansible ad hoc commands are powerful, one-liner commands designed for executing quick, straightforward tasks across multiple machines. Unlike playbooks, which are akin to shell scripts with logical flows, ad hoc commands are like Linux one-liners that execute tasks without additional configurations.
In this blog, we'll explore what Ansible ad hoc commands are, how they work, why they are essential, and provide actionable examples, focusing on tasks like pinging servers and checking uptime.
What Are Ansible Ad-Hoc Commands?
Ansible ad hoc commands are short, versatile commands used to manage nodes in a quick and efficient manner. They are particularly useful for tasks like:
Testing connectivity between the control node and managed hosts.
Gathering system facts.
Managing files, packages, and services.
These commands are executed directly from the command line, making them a lightweight and immediate solution for automation tasks.
Key Characteristics of Ansible Ad-Hoc Commands:
One-Liners: Simple commands written in a single line.
Direct Execution: No need for predefined playbooks or roles.
Reusable: Can be run multiple times without configuration.
Inventory-Based: Operates on hosts defined in an inventory file.
Why Are Ad-Hoc Commands Important?
Ad hoc commands are essential for scenarios where quick actions are needed without the overhead of creating a full playbook. For example:
Quickly troubleshooting servers.
Executing repetitive tasks on the fly.
Managing a subset of servers dynamically.
They act as your automation Swiss Army knife for immediate tasks while keeping playbooks reserved for complex, repeatable processes.
How to Use Ansible Ad-Hoc Commands?
Pre-requisites:
Ansible installed on the control node.
Inventory file with target hosts defined.
SSH access to the managed nodes.
Properly configured
ansible.cfg
(optional but helpful).
Basic Syntax:
ansible [pattern] -m [module] -a [arguments] -i [inventory]
pattern
: Specifies the target hosts (e.g.,all
,web
,db
, or specific host names).-m
: Defines the module to use (e.g.,ping
,shell
,command
).-a
: Provides arguments for the module.-i
: Specifies the inventory file location (optional if the default is configured).
Task-01: Writing Ansible Ad-Hoc Commands
1. Ping Three Servers from Inventory File
The ping
module is used to test connectivity between the control node and managed hosts.
Command:
ansible all -m ping -i inventory.yml
Explanation:
all
: Targets all hosts in the inventory file.-m ping
: Uses theping
module to test connectivity.-i inventory.yml
: Specifies the inventory file containing the list of target hosts.
Example Output:
server1 | SUCCESS => {
"changed": false,
"ping": "pong"
}
server2 | SUCCESS => {
"changed": false,
"ping": "pong"
}
server3 | SUCCESS => {
"changed": false,
"ping": "pong"
}
2. Check Uptime on Managed Hosts
The command
module can be used to execute the uptime
command on remote hosts.
Command:
ansible all -m command -a "uptime" -i inventory.yml
Explanation:
all
: Targets all hosts in the inventory.-m command
: Specifies thecommand
module for running shell commands.-a "uptime"
: Provides theuptime
command as an argument to the module.-i inventory.yml
: Points to the inventory file.
Example Output:
server1 | SUCCESS => {
"changed": false,
"stdout": " 14:32:01 up 2 days, 4:12, 2 users, load average: 0.01, 0.05, 0.10"
}
server2 | SUCCESS => {
"changed": false,
"stdout": " 14:32:02 up 3 days, 6:23, 3 users, load average: 0.00, 0.02, 0.08"
}
server3 | SUCCESS => {
"changed": false,
"stdout": " 14:32:03 up 1 day, 1:45, 1 user, load average: 0.02, 0.04, 0.07"
}
Best Practices for Ad-Hoc Commands
Use Inventory Groups: Target specific host groups for better control.
- Example:
ansible webservers -m ping
- Example:
Test with
--check
: Use the--check
option to simulate changes.Leverage SSH Keys: Ensure password-less SSH authentication for seamless execution.
Keep It Simple: Use ad hoc commands for quick, atomic tasks and playbooks for complex operations.
Conclusion
Ansible ad hoc commands are invaluable for immediate and simple automation tasks. Whether it's pinging servers or retrieving uptime information, these one-liners provide a quick and efficient way to manage your infrastructure.
By understanding the syntax and applications of ad hoc commands, you can enhance your automation toolkit and streamline daily operations.