python-redfish-library
python-redfish-library copied to clipboard
Getting ServerDownOrUnreachableError with error code 401 for the password containing "$Password"
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.