是否可以使用 Drush 更改用户的 Drupal 密码?

发布于 2024-10-17 08:55:17 字数 40 浏览 2 评论 0原文

是否可以使用 Drush 从命令行更改用户的 Drupal 密码?

Is it possible to change a user's Drupal password from the command-line with Drush?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

箜明 2024-10-24 08:55:17

如果您运行的是 Drupal 7,则使用 md5 将不起作用,因为密码已加盐。但是,如果您有 drush 4.x,则可以使用 user-password 命令:

drush user-password someuser --password="gr3@tP@$s"

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:

drush user-password someuser --password="gr3@tP@$s"
静若繁花 2024-10-24 08:55:17

是的。以下是在您知道 UserID (uid) 的情况下重置 Drupal 管理员用户密码的示例:

drush sqlq "update {users} set pass=md5('new_password_here') where uid=1"

Yes. Here's an example for resetting the password of the Drupal admin user given that you know the UserID (uid):

drush sqlq "update {users} set pass=md5('new_password_here') where uid=1"
走过海棠暮 2024-10-24 08:55:17

命令如下:

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文