Active IQ Unified Manager Discussions

Workflow to share/sync content of one WFA server with other WFA servers.

sinhaa
2,822 Views

WFA can not only be used to automate tasks related to Storage controllers or servers  but just about any task that requires manual effort, even the WFA related tasks.

Here is an example of how to share the contents on one WFA with multiple WFA instances. This is a manual task of periodically getting the dar from the primary WFA server and importing the dar file on every WFA server. Can this be automated using a workflow trigger. Of course. Let’s see how

 

The workflow design is very simple.

 

  1. A Master/Primary WFA (WFA_master) server exports all its contents in a dar file.
  2. WFA_master has the list of Secondary WFA Servers (WFA_sec)and their credentials.
  3. Workflow executes and imports the content dar in all the secondary WFA servers.

 

Attaching the workflow dar, Data Source Type script dar and A JSON data file which does this.

 

 

On Primary WFA Server:

Prerequisites:

 

  1. You need PowerShell 3.0 on the Primary WFA server. The Command code and DataSource Type script uses Posh cmdlets which are only available from PoSH3.0 and above. WFA is fully supported on PoSH3.0. Windows Server 2012 by default has PoSH3.0, Windows Server 2008 can be upgraded. Windows server 2003 it will NOT work.
  2. Minimum WFA version on all WFA servers should be WFA2.2

 

Steps:

 

  1. Import the attached DAR files into your primary WFA Server. It adds the follwoing to your WFA server:
  1. Copy the file wfa.json at folder location C:\temp. This is your Data file having the details of the secondary WFA servers.
  2. Now open file C:\temp\wfa.json in some editor like Notepad++. It’s a JSON file with keys: hostname, ipv4address and https_port. Every entry in this JSON file is secondary WFA server Hostname, ipv4Address and Https port (default 443). Modify the entries according to your setup. It’s very simple.
  3. Create a Data Source of type "WFA Data Source". Put any dummy values for IP, Hostname and ports etc. The Data acquisition script doesn't make use of any of those. The script gets its data from c:\temp\wfa.json file and puts them in WFA Database. This code is also an example of how to acquire data from a JSON file.
  4. Add credentials of a WFA admin/architect user into your master WFA with the following:

 

Match: Exact

Type: Other

Name/IP: localhost

Username:<username of a WFA admin/architect role>.

Password:<user password>

 

 

Credentials_localhost.png

 

 

  1. Add credentials of all the secondary WFA servers into Master WFA server.

Match: Exact

Type: Other

Name/IP: <Secondary WFA Server IP>

Username:<username of a WFA admin/architect role>.

Password:<user password>

 

 

Credentials_secondary_WFA_server.png

 

All set!!

 

 

Workflow Execution:

 

  1. Now execute the workflow "Workflow to Sync contents of Master WFA to All secondary WFA servers".
  2. You can open to see the comamnd code and workflow details. "Workflow to Sync contents of Master WFA to All secondary WFA servers". Modify it, play with it as you wish.

 

sinhaa

WFA

 

 

 

 

 

If this post resolved your issue, help others by selecting ACCEPT AS SOLUTION or adding a KUDO.
2 REPLIES 2

korns
2,805 Views

Awesome work Sinhaa !!

Adai
2,798 Views

Nice work .... Will give it a try.

 

Regards

adai

Public