Last active
January 19, 2025 00:27
-
-
Save jcanfield/cecd0536649d59880e2771f6003403cd to your computer and use it in GitHub Desktop.
Reset Password for integrated Dell remote access controller (iDRAC6)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My mistake.