Ansible is an open source tool for automation and configuration management of server, ansible allows you to automate your server whether on local or on cloud, ansible is a popular tool used by devops.
Ansible works through ssh connection, therefore you don't need to install anything on the server you are about to automate, you only need install ansible on your own computer. To install ansible on lubuntu/ubuntu is pretty easy.
Step by step how to install ansible on ubuntu
- Make sure you already have pip (python package installer) on your system, if not you can install using this command
- Install ansible using pip
- run this command to check the ansible version that you have
- if you need to upgrade ansible version to the latest one, simply run this
sudo apt-get install python-pip
sudo pip install ansible
pip --version
sudo pip install --upgrade ansible
Once installed, you can run 'ansible' program from the command line, or use the 'ansible-playbook' command if you want to run playbook.
No comments:
Post a Comment