是否可以使用 Drush 更改用户的 Drupal 密码?
是否可以使用 Drush 从命令行更改用户的 Drupal 密码?
Is it possible to change a user's Drupal password from the command-line with Drush?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您运行的是 Drupal 7,则使用 md5 将不起作用,因为密码已加盐。但是,如果您有 drush 4.x,则可以使用 user-password 命令:
If you're running Drupal 7, using md5 won't work as passwords are salted. However, if you have drush 4.x, you can use the user-password command:
是的。以下是在您知道 UserID (uid) 的情况下重置 Drupal 管理员用户密码的示例:
Yes. Here's an example for resetting the password of the Drupal admin user given that you know the UserID (uid):
命令如下:
drush user-password someuser --password="New Password-of yours"
您可以通过 Drsuh term 进行更改
The Command goes like this:
drush user-password someuser --password="New Password-of yours"
You can change through Drsuh term