python-redfish-library icon indicating copy to clipboard operation
python-redfish-library copied to clipboard

Getting ServerDownOrUnreachableError with error code 401 for the password containing "$Password"

Open khaderbmc opened this issue 1 year ago • 5 comments

Hi Team,

I am getting serverDown or UnreachableError : Server not reachable with return code 401" for the password="$password" containing "$" .

Here is my code:

import redfish

login_host = "https://XX.XXX.XXX.XX" login_account = "root" login_password = "$password"

REDFISH_OBJ = redfish.redfish_client(base_url=login_host, username=login_account, password=login_password, default_prefix='/redfish/v1')

Is there any step needed to handle passwords with "$" special character.

khaderbmc avatar Feb 29 '24 13:02 khaderbmc