This is an old revision of the document!
Ansible is an open-source software provisioning, configuration management, and application-deployment tool. It runs on many Unix-like systems, and can configure both Unix-like systems as well as Microsoft Windows. It includes its own declarative language to describe system configuration. Ansible is agentless, temporarily connecting remotely via SSH or Windows Remote Management (allowing remote PowerShell execution) to do its tasks.
iX 10/2023 - Page 102 - Event-Driven Ansible – automatisch automatisiert
Linux-Magazin 03/2023 - Page 52 - Die zehn besten Tricks im Umgang mit Ansible
Grundkurs Ansible, Teil 1: Einstieg, Installation, Basics
Grundkurs Ansible, Teil 2: Variablen, Templates, eigene Rollen
Grundkurs Ansible, Teil 3: Eigene Module schreiben
Grundkurs Ansible, Teil 4: Werkzeuge, Monitoring, Debugging für den Support
Manual pages:
user@host:~$
To install Ansible on Debian:
root@host:~$ apt-get -y install ansible
user@host:~$ ssh-keygen -t rsa -b 4096 -C "Ansible $(hostname -f)" -f ~/.ssh/id_rsa_ansible
To check the status of :
root@host:~$