3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MySQL 8.0 で validate_password を有効化・無効化する方法

Posted at

概要

MySQL の新規パスワードの強度チェック機能 "validate_password" がバージョン8から扱いが変わってプラングインでなくコンポーネントになったとのこと。
従来とは有効化、無効化の方法とは違っているが、ググってもぱっと出てこなかったので自分用メモ。

方法

mysql のコンソールで以下を実行。

-- 有効化
INSTALL COMPONENT 'file://component_validate_password';

-- 無効化
UNINSTALL COMPONENT 'file://component_validate_password';

参考サイト

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?