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 -pmysql> 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)
MySQL
hakkında diğer konular