Installing Ansible on Red Hat Linux
1. First to Authenticate the subscription
subscription-manager register --username your_username --password your_password
- Update
yum update - Install Python
yum install python - Install PIP
sudo yum install python-pip - Upgrade pip
sudo pip install --upgrade pip - Install libraries and modules for python & Ansible
- Install Ansible
yum install ansible - Check version ansible
ansible --version
Comments
Post a Comment