In this article, you will see how we can create, install and remove and copy directories from one local to the remote host and set attributes like permission and ownership and different characteristics through copy module. 1.. About Copy Module 2. Quick Syntax for Playbook and ad-hoc command 3. Copy… Continue Reading…
Automating the installation of the database Servers is quite easy to set up and configure through an ansible playbook. I have installed & configured the MySQL server through roles and an ansible playbook. MySQL is an open-source relational database and is very popular in setting web hosting Linux, Apache /… Continue Reading…
This post will show you the installation of Java through the automation tool Ansible. We will write a playbook to use roles or simple methods to install java on multiple managed host machines. Use different Linux flavors RPM-based distribution or Debian-based system. Here I am going to try the RPM-based… Continue Reading…
Container images are generally stored in image registries. Distribute through public or private users. Image registries share container images to download. You can configure registries for docker search. In this topic, I am going to check the docker search command, which finds images in different image registries and filters through… Continue Reading…
In this post, We are deploying a container of MySQL that saves the data into a host folder. Here we will able to manage a persistent database with a shared volume. Step 1: Search official MySQL Docker Container Image Docker user search through subcommand and find available MySQL official images… Continue Reading…
Do you want to disable or enable ( enforcing ) SELinux mode on host machines through ansible-playbook? Here I am writing a playbook to change the mode of the SELinux type. SELinux is an important security feature of Linux. There is three value in SELinux, which is Enforcing, Permissive and… Continue Reading…
To implement available containers for deployment docker is one of the most important utilities. Hub provides a large number of containers developed by the community. It works as a service and uses a client-server architecture. Docker client CLI Tool is responsible for communicating with a server and Docker Server runs… Continue Reading…
In this article, I am going to show some basic podman commands for provisioning containerized services. podman is an open-source utility to create, manage images and containers and communication with image registries. Podman is like the same command pattern as the Docker CLI having and nice features in it like… Continue Reading…
This post will show you how we can view disk space through an ansible-playbook. Here I am using Linux-based identical machines and the Operating system is CentOS. In our playbook, I am going to use the register variable to capture the output and debug module to show the output of… Continue Reading…