Skip to content

Reset Your Admin Password

snowblink edited this page Feb 1, 2011 · 2 revisions

Radiant doesn’t presently provide a way to do this through the user interface, but you can reset your password using the console:

script/console production
Loading production environment.
>> user = User.find_by_login('admin')
=> ...
>> user.password = user.password_confirmation = 'newpassword'
=> "newpassword"
>> user.save!
=> true
>> exit
Clone this wiki locally