$ howdoi -a remove mysql password validation Here is what I do to remove the validate password plugin: Login to the mysql server as root mysql -h localhost -u root -p Run the following sql command: uninstall plugin validate_password; --- Answer from https://stackoverflow.com/questions/36301100/how-do-i-turn-off-the-mysql-password-validation
Das gute alte howdoi script. Konkret wollte ich wissen, wie ich auf einem Testserver die Anforderungen an Benutzerpasswörter schnell wieder runterschrauben kann, nachdem ich sie via Script mysql_secure_installation zuvor auf das Maximum gestellt habe. Ist nur ein Testserver, keine Sorge.