Instalei o MySQL e o servidor da comunidade MySQL no meu HDP Hortonworks. Iniciei o serviço e tentei alterar a senha
/usr/bin/mysql_secure_installation
Securing the MySQL server deployment.
Connecting to MySQL using a blank password.
The 'validate_password' plugin is installed on the server.
The subsequent steps will run with the existing configuration
of the plugin.
Please set the password for root here.
New password:
Re-enter new password:
Estimated strength of the password: 50
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y
... Failed! Error: The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
E esse processo está se repetindo de novo e de novo.
apaguei skip=grant-tables
do meu /etc/my.conf
arquivo
Eu tentei o que o bart sugeriu, funcionou em primeiro lugar, mas depois tenho o mesmo problema.
I logged as a root.
mysql> create database registry;
Query OK, 1 row affected (0.05 sec)
mysql> CREATE USER 'registry'@'%' IDENTIFIED BY 'R12$%34qw';
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
Como consertar isto?
Apenas pare e reinicie o MySQL normalmente.
Editar
Por outro lado:
Certifique-se de liberar os privilégios:
Da documentação :