Start a Conversation

Solved!

Go to Solution

1001

April 7th, 2022 12:00

dellemc.powermax.info issue

Just starting off with Ansible against storage arrays and running into an issue with powermax collection just trying to gather info.  The task is below, but returns this error, any thoughts? 

FAILED! => {"changed": false, "msg": "Bad or unexpected response from the storage volume backend API: The GET request to URL https://********:8443/univmax/restapi/version failed with exception: Failed to parse: https://********:8443/univmax/restapi/version
- name: Get detailed list of Powermax entities
  ignore_errors: yes
  dellemc.powermax.info:
  unispherehost: "{ { inventory_hostname }}:{ { storageport }}"
   
  #universion: '91'
  verifycert: "{ {verifycert}}"
  user: "{ {username}}"
  password: "{ {password}}"
  environment:
  no_proxy: '*'
  register: array_info
  delegate_to: localhost

1 Rookie

 • 

79 Posts

April 14th, 2022 04:00

Hi @travelerdb ,

From the error message, it looks like installed PyU4V SDK is incompatible with the Unisphere version. Could you please confirm the PyU4V SDK version installed? Could you please install PyU4V SDK version 9.1 for unisphere 9.1?

 

Thanks,

Jennifer

10 Posts

April 13th, 2022 05:00

Thanks @jennifer_john , that did get it a bit further to basically saying the version is unsupported, however, my understanding is that it supports 9.1 and 9.2, should it support 9.1?  

{"changed": false, "module_stderr": "Unisphere version V9.1.0.18 does not meet the minimum requirement of v9.2.0.x Please upgrade your version of Unisphere to use this SDK. Exiting...\n", "module_stdout": "", "msg": "MODULE FAILURE\nSee stdout/stderr for the exact error", "rc": 1}
No Events found!

Top