Testing Connectivity to Ansible Nodes

To test that Ansible is able to connect and run commands and playbooks on your nodes, you can use the following command:


ansible all -m ping

The ping module will test if you have valid credentials for connecting to the nodes defined in your inventory file, in addition to testing if Ansible is able to run Python scripts on the remote server. A pong reply back means Ansible is ready to run commands and playbooks on that node.

Comments