Skip to content

Instantly share code, notes, and snippets.

@jcanfield
Last active January 19, 2025 00:27
Show Gist options
  • Save jcanfield/cecd0536649d59880e2771f6003403cd to your computer and use it in GitHub Desktop.
Save jcanfield/cecd0536649d59880e2771f6003403cd to your computer and use it in GitHub Desktop.
Reset Password for integrated Dell remote access controller (iDRAC6)
#!/bin/bash
## Synopsis
# Reset the primary password on Dell PowerEdge or any device using iDRAC6
## Usage
# sudo ./racadm-reset-pwd.sh YOURPASS
## NOTE
# Resource- http://www.remotecto.net/2010/10/19/changing-a-drac-password-on-the-command-line-with-racadm/
sudo racadm config -g cfgUserAdmin -o cfgUserAdminPassword -i 2 $1
echo "Plase take note of your password"
exit
@jcanfield
Copy link
Author

My mistake.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment