Saturday, 29 November 2025

Ansible - 1. installation

To install ansible on OEM 7 , follow below step 

1. yum install -y oracle-epel-release-el7

2.  yum install -y ansible

3. Verify the version installed

[root@oel01db ~]# ansible --version
ansible 2.9.27
  config file = /etc/ansible/ansible.cfg
  configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/lib/python2.7/site-packages/ansible
  executable location = /usr/bin/ansible
  python version = 2.7.5 (default, May 27 2020, 06:51:48) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44.0.1)]
[root@oel01db ~]#

No comments:

Post a Comment

Building a Safer PostgreSQL CI/CD Pipeline with GitHub Actions: Dev → PR Review → Test Promotion

In my previous post, we explored a simple push-to-main deployment strategy . While functional, that model is not considered an industry best...