Skip to content

Instantly share code, notes, and snippets.

@sebastianmoran-mainwp
Created December 18, 2019 04:58
Show Gist options
  • Save sebastianmoran-mainwp/33e864239631594fe8fed24bdf8bb46f to your computer and use it in GitHub Desktop.
Save sebastianmoran-mainwp/33e864239631594fe8fed24bdf8bb46f to your computer and use it in GitHub Desktop.
Reset user in Discourse from Command line
ssh into your server
cd /var/discourse
./launcher enter app
rails c
u = User.find_by_email('email@test.com')
u.password='zKRR6vTZKvJAB84V9jdgeydS'
u.save!
ctrl+d to exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment