Install Oracle DB client using ansible
We can use the power of ansible to automate the oracle client installation task on multiple servers.In this article, we will explain how we will achieve this by executing an ansible playbook from ansible control node. Ansible control node is any machine where ansible tool is installed. IMPORTANT POINTS: oracle 19c client will be installed on all nodes. Make sure the servers where client need to be installed has connectivity from ansible control server Below are the steps : 1. Copy the oracle 19c client software ( zip file ) to ansible control server. [ansible_node] ls -ltr /oracle/LINUX.X64_193000_client.zip 2. Prepare the inventory file: The list of servers where oracle 19c client will be installed. [ansiblel_node] $ cat /home/ansible/ansible-scipts/host_inv [appserver] linux_host22 ansible_host=10.20.86.60 ansible_connection=ssh ansible_user=root ansible_ssh_pass=dbaclass@123 linux_host29 ansible_host=10.20.86.61 ansible_connection=ssh ansible_...