Find below Ansible playbook to install Java 8 on Ubuntu
Step 1: Create the playbook first with name. for e.g, installJava.xml
---
- hosts: Java_Group
tasks:
- name: Update APT package manager repositories cache
become: true
apt:
update_cache: yes
- name: Install OpenJDK Java
become: yes
apt:
name: "{{ item }}"
state: present
with_items:
openjdk-8-jdk
2. sudo vi /etc/ansible/hosts
make sure you add below entry with target node IP changed (in red color).
[Java_Group]
xx.xx.xx.xx ansible_ssh_user=ubuntu ansible_ssh_private_key_file=~
3. sudo ansible-playbook installJava.xml
Thanks for the well-written post and I will follow your updates regularly and this is really helpful. Keep posting more like this.
ReplyDeleteDevOps Training in Chennai
DevOps Certification in Chennai
AWS Training in Chennai
AWS course in Chennai
Cloud Computing Training in Chennai
Cloud Computing Courses in Chennai
DevOps Training in Velachery
DevOps Training in Tambaram
DevOps course in Chennai
can u please help me how to check java in remote host, if java is not insatlled it should be insatll now. how to write a playbook for that
ReplyDeletei am looking for the same
DeleteI was just looking for it. It worked, thanks!
ReplyDelete