/images/wanglibing001.png

DevPro Insights

Focused on knowledge and innovation in software development

Ansible Note

1. Introduction Ansible is a Python-based automation tool that manages nodes over SSH and uses YAML to describe configurations. It has features like being agentless, efficient, and simple. Ansible is commonly used for automation deployment, configuration management, etc. 2. Installation & Configuration 2.1. Install Ansible 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 # MacOS > brew install ansible # CentOS > yum install epel-release > yum repolist > yum install ansible -y # Ubuntu > sudo apt-add-repository ppa:ansible/ansible > sudo apt-get update > sudo apt-get install ansible # Pip > pip install ansible 2.