Drupal8.x重置管理员密码

Drupal8.x重置管理员密码

1.drupalConsole方法:

  • 创建一个一次性登录地址=>drupal user:login:url
  • 重置密码=>drupal user:password:reset
  • 清除登录失败记录=>drupal user:login:clear:attempts

2.使用代码来重置密码:

在index.php中加入如下代码即可:
use Drupal\user\Entity\User;

// Setup the user fields.
$user_fields = array(
        'name' => 'admin',
        'mail' => '[email protected]',
        'pass' => '111111',
        'status' => 1,
        'init' => '[email protected]',
        'roles' => 'authenticated user',
);
// Create a new user.
$account = User::create($user_fields);
$account->save();
就可以用新生成的密码替换管理员密码。

你可能感兴趣的:(Drupal)