Ansible playbooks are amazing, as you learned yesterday. What if you deploy a simple web app using ansible, sounds like a good project, right?
Task-01
Create 3 EC2 instances. make sure all three are created with same key pair.
To create 3 EC2 instances, navigate to the EC2 service and launch them.
After creating the three EC2 instances, designate one instance as the Ansible control node (ansible_master), and the other two instances as managed nodes (ansible_server).
Install Ansible in master server
Connect to your EC2 instance using SSH.
Add the Ansible PPA repository using the following command:
sudo apt-add-repository ppa:ansible/ansible
Update the package using following commands
Install Ansible using the following command:
sudo apt install ansible
Once the installation is complete, you can check the version of Ansible using the following command:
ansible --version
Copy the private key from local to Host server (ansible_master) at (/home/ubuntu/.ssh)
Copy private key from your local.
To proceed with the setup, copy the private key to the Ansible control node (ansible_master) by creating a new file at /home/ubuntu/.ssh and pasting the private key in that file.
Give permissions to the private key file using chmod command.
Access the inventory file using sudo nano /etc/ansible/hosts
Create inventory file at location /etc/ansible/hosts which is by default location of file. Ansible hosts file is a configuration file that contains a list of hosts or servers. Add the IP addresses of the servers also add private key file location to use for authentication.
Create a playbook to install Nginx
In this playbook, we first specify the name of the playbook (Install nginx) and the hosts we want to target (servers). We also set become: yes to run the tasks with root privileges.
The first task updates the apt cache on the managed nodes using the apt module. The second task installs the latest version of Nginx using the same module. The third task uses the service module to start the Nginx service by specifying the service name (nginx) and setting the state parameter to started.
Run playbook using the ansible-playbook command
ansible-playbook file-name.yml
Check the status of Nginx on the two EC2 instances,
Deploy a sample webpage using the ansible playbook
Create a new file index.html in the playbook directory, and add some sample content
Update a ansible playbook file, install_nginx.yml, in the playbook directory:
This playbook will copy the index.html file to the default Nginx web server document root directory at /var/www/html/.
Run the playbook
Once the playbook finishes executing, open a web browser and enter the public IP address of one of the EC2 instances running Nginx
server1:
server2:
Thank you for reading!! I hope you find this article helpful!!
Happy Learning!!