Question

How can I change a user's password from the command line using Drush?

Was it helpful?

Solution

In Drush 9 the command is

drush user:password USERNAME "SOMEPASSWORD"

with command name aliases user-password and upwd.

In Drush 8 (and earlier) the command is

drush user-password USERNAME --password="SOMEPASSWORD"

with command name aliases upwd.

See https://drushcommands.com/drush-9x/user/user:password/ and https://drushcommands.com/drush-8x/user/user-password/

OTHER TIPS

You can execute drush uli, this will generate a one time login link. By default it provides one-time login link for administrator.

If you execute drush uli some-username, this will generate one time login link for that user.

UPDATE:

You can also use drush upwd for updating the password. Use it like this drush upwd --password=<new password> <some-username>

If you are using Drush 4, you can use the user-password command.

drush user-password usernamehere --password="newpasswordhere"

$ drush help user-password (Re)Set the password for the user account with the specified name.

Examples: drush user-password someuser --password="correct horse battery" Set the password for the username someuser. @see xkcd.com/936

Arguments: name The name of the account to modify.

Options: --password= The new password for the account. Required.

Aliases: upwd

In Drush 9 (recommended for > Drupal 8.4) this is slightly different:

drush upwd USERNAME PASSWORD

There is another way to reset password. You can use drush uli "username" which gives reset link in terminal, using the link you can login and change the password.

If you specify -l http://localhost (where localhost is your host), then terminal would automatically open web browser for you.

in New version of Drush(In Drush 9 Drupal > 8.5 ) it doesn't work with

drush user-password USERNAME --password="SOMEPASSWORD"

It must be

drush user-password USERNAME SOMEPASSWORD

for example ( change password of root user)

drush user-password root MyPass0302

And with Drupal Console

drupal user:password:reset

then enter userid,
then type new password.

Enjoy it.

Update

in Drush > 9

drush upwd USERNAME PASSWORD

If you have ssh access to the server, cd to the drupal root directory and run:

drush upwd --password="myNewSecretPassword" "admin"

Source: https://www.drupal.org/node/44164

If we don't know more about drush then we can change password from database in user table . We will edit password and select md5 then we can change password.

Note that this command has changed in Drush 9.x, but can be found documented here

The syntax thus looks like this:

drush user:password someuser "correct horse battery staple"

For example, on the user 'bjenkins' it would be:

drush user:password bjenkins "newReallyComplexPassword123!"

You can also add a --notify command to notify the user of this password change to their registered email.

Licensed under: CC-BY-SA with attribution
Not affiliated with drupal.stackexchange
scroll top