ansible playbook to create and remove a WebSphere application server deployment manager profile

+1 vote
I am trying to write an ansible playbook to create and remove a WebSphere application server deployment manager profile. Can somebody give a sample playbook for it?

Thanks!
Oct 30, 2019 in Ansible by Hannah
• 18,570 points
3,335 views

1 answer to this question.

0 votes

The below gives an example of creating and removing WebSphere Application Server Deployment Manager Profile. Check it out:

- name: Create
  profile_dmgr: 
    state: present 
    wasdir: /usr/local/WebSphere/AppServer/ 
    name: dmgr 
    cell_name: devCell 
    host_name: localhost 
    node_name: devcell-dmgr 
    username: admin 
    password: allyourbasearebelongtous

- name: Remove
  profile_dmgr: 
    state: absent 
    wasdir: /usr/local/WebSphere/AppServer/ 
    name: dmgr
answered Oct 30, 2019 by Tanmay

Related Questions In Ansible

0 votes
1 answer

ansible playbook to start and stop a WebSphere application

The below playbook should be good enough: - ...READ MORE

answered Oct 30, 2019 in Ansible by Tanya
6,288 views
0 votes
1 answer

Ansible Playbook to create a Load Balancer

Hey @Himanshu, you can try something like ...READ MORE

answered Mar 25, 2019 in Ansible by Jack
2,325 views
0 votes
1 answer
+15 votes
2 answers

Git management technique when there are multiple customers and need multiple customization?

Consider this - In 'extended' Git-Flow, (Git-Multi-Flow, ...READ MORE

answered Mar 27, 2018 in DevOps & Agile by DragonLord999
• 8,450 points
3,527 views
+2 votes
1 answer
0 votes
1 answer

ansible playbook to create and remove a WebSphere Application Server Node Agent profile

This should workout: - name: Create profile_nodeagent: ...READ MORE

answered Oct 30, 2019 in Ansible by Tanishq
943 views
0 votes
1 answer
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP