Yükleniyor...
ERROR 1819 (HY000): Your password does not satisfy the current policy r
Yazdır
  • 0

MySQL veya MariaDB SQL servisini kullanırken aşağıdaki hatayı alıyorsanız sebebi; parolanızın çok basit ve güvenlik ilkelerine göre çok güvensiz olması.

ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

 

Çözüm;

 

uninstall plugin validate_password;

 

mysql -u root -p
mysql> uninstall plugin validate_password;
Query OK, 0 rows affected (0.00 sec)
mysql> CREATE USER 'user'@'%' IDENTIFIED BY '12345678';
Query OK, 0 rows affected (0.00 sec)

 

Bu cevap yeterince yardımcı oldu mu?

İlgili diğer dökümanlar