Skip to content

Instantly share code, notes, and snippets.

@radheymkumar
Created February 21, 2019 09:02
Show Gist options
  • Save radheymkumar/8bf87bf7ca59aa77f766b69f38ca74bb to your computer and use it in GitHub Desktop.
Save radheymkumar/8bf87bf7ca59aa77f766b69f38ca74bb to your computer and use it in GitHub Desktop.
Create Admin User IN Drupal by DRUSH
Create a new administrator account in drupal with drush
Create your new user:
$ drush user-create your_user_name --mail="your_user_email@email.com" --password="your user password"
Assign the role administrator to your user:
$ drush user-add-role "administrator" your_user_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment