Ansible
Nginx installation using Ansible Playbook
—- hosts: test-server gather_facts: yes connection: ssh tasks: – name: install nginx yum: name: nginx state: latest – name: enable and start the nginx service service: …
Ansible
Ansible is a simple automation language used for software provisioning, configuration management and application deployment. ad-hoc task-execution, and multinode orchestration. It’s a simple automation language that can easily be understood by everyone and there are no special skills required to…
Ansible on Windows
We can now manage windows machine using Ansible. For that, we need to install the following setup in our windows machine. ===========1. Install Python-winrm to allow Ansible to connect to the Windows machines2. Upgrade to PowerShell 3.0+ to support Windows…