2013-06-03 07:32:18 +0000 2013-06-03 07:32:18 +0000
130
130

mysql como arreglar el acceso denegado para el usuario 'root'@'localhost'

Antes de meter la pata en algo, cuando me conecto usando $ mysql -u root -p, y muestro las bases de datos:

+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| game_data |
| test |
+--------------------+

Luego traté de crear un nuevo usuario y noté que algo está mal con los PRIVILEGIOS.

Así que borré los nuevos usuarios, y supongo que eliminé el ‘root’ y el ‘Admin’ accidentalmente.

Entonces trato de crear ‘root’ de nuevo, pero obtengo el error de Acceso denegado al hacer concesión de todos los privilegios.

mysql> CREATE USER 'root'@'localhost' IDENTIFIED BY 'password';
mysql> grant all privileges on *.* to 'root'@'localhost' identified by 'password' with grant option;
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

Si vuelvo a entrar en MySQL usando $ mysql -u root -p, y muestro las bases de datos,

+--------------------+
| Database |
+--------------------+
| information_schema |
+--------------------+

Todas las otras bases de datos han desaparecido.

¿Cómo arreglo MySQL ahora?

No puedo encontrar la base de datos ‘mysql’, no puedo crear base de datos, crear usuario, cualquier cosa que intente hacer obtendrá un error.

ERROR 1045 (28000): Acceso denegado para el usuario ‘root’@‘localhost’ (usando la contraseña: SÍ).

¿Debo reinstalar MySQL usando MacPorts? Si lo reinstalo, perderé la base de datos game_data, ¿verdad?

Respuestas (6)

138
138
138
2013-06-03 07:35:27 +0000

Siga los pasos siguientes.

  1. Inicie la instancia del servidor MySQL o el demonio con la opción --skip-grant-tables (configuración de seguridad).

  2. Ejecutar estas declaraciones.

Si se encuentra con el campo desconocido Error de contraseña arriba, use:

update user set authentication_string=password('my_password') where user='root';
  1. Finalmente, reinicie la instancia/demonio sin la opción --skip-grant-tables.

Ahora debería poder conectarse con su nueva contraseña.

$ mysql -u root -p

Introduzca la contraseña: my_password

Corrección para MySQL “No se puede bloquear ibdata1” error

sudo mv /usr/local/mysql/data/ibdata1 /usr/local/mysql/data/ibdata1.bak
sudo mv /usr/local/mysql/data/ib_logfile0 /usr/local/mysql/data/ib_logfile0.bak
sudo mv /usr/local/mysql/data/ib_logfile1 /usr/local/mysql/data/ib_logfile1.bak
sudo cp -a /usr/local/mysql/data/ibdata1.bak /usr/local/mysql/data/ibdata1
sudo cp -a /usr/local/mysql/data/ib_logfile0.bak /usr/local/mysql/data/ib_logfile0
sudo cp -a /usr/local/mysql/data/ib_logfile1.bak /usr/local/mysql/data/ib_logfile1
sudo /etc/init.d/mysql restart
74
74
74
2016-09-28 15:01:12 +0000

Nada de lo anterior fue de ayuda para mí. Descubrí que necesitaba despejar el método del plugin. En 5.6, pude hacer:

sudo mysql -u root
use mysql;
[mysql] update user set plugin='' where User='root';
[mysql] flush privileges;

En 5.7, encontré que necesitaba:

sudo mysql -u root
use mysql;
[mysql] update user set plugin='mysql_native_password' where User='root';
[mysql] flush privileges;

De acuerdo con los documentos, con el plugin configurado en una cadena vacía, debería tener efectivamente por defecto la contraseña nativa de mysql, pero puede ser confundido por un hash de contraseña vacía. Para más matices, puedes leer la documentación aquí: https://dev.mysql.com/doc/refman/5.7/en/native-authentication-plugin.html

8
8
8
2016-04-28 21:27:58 +0000

También asegúrate de que el registro necesario en la tabla user tiene el campo plugin vacío (puede haber, por ejemplo, "unix_socket").

Desde la versión 5.5.7 mysql tiene soporte para varios plugins de autorización https://dev.mysql.com/doc/refman/5.6/en/authentication-plugins.html

Así que si tienes el campo plugin no vacío entonces la contraseña sería ignorada y habría un aviso en el registro de errores de mysql (para mí es /var/log/mysql/error.log):

[Warning] 'user' entry 'root@localhost' has both a password and an authentication plugin specified. The password will be ignored.

8
8
8
2016-01-22 23:08:02 +0000
grep 'temporary password' /var/log/mysqld.log
Sort date (newest date)

Puede que veas algo como esto;

[root@SERVER ~]# grep 'temporary password' /var/log/mysqld.log
2016-01-16T18:07:29.688164Z 1 [Note] A temporary password is generated for root@localhost: O,k5.marHfFu
2016-01-22T13:14:17.974391Z 1 [Note] A temporary password is generated for root@localhost: b5nvIu!jh6ql
2016-01-22T15:35:48.496812Z 1 [Note] A temporary password is generated for root@localhost: (B*=T!uWJ7ws
2016-01-22T15:52:21.088610Z 1 [Note] A temporary password is generated for root@localhost: %tJXK7sytMJV
2016-01-22T16:24:41.384205Z 1 [Note] A temporary password is generated for root@localhost: lslQDvgwr3/S
2016-01-22T22:11:24.772275Z 1 [Note] A temporary password is generated for root@localhost: S4u+J,Rce_0t
[root@SERVER ~]# mysql_secure_installation

Asegurando la implementación del servidor MySQL.

Enter password for user root: 

The existing password for the user account root has expired. Please set a new password.

New password: 

Re-enter new password:

Si ves que dice

... Failed! Error: Your password does not satisfy the current policy requirements
That means your password needs to have a character such as ! . # - etc...
mix characters well, upper case, lower case, ! . , # etc...

New password: 

Re-enter new password: 
The 'validate_password' plugin is installed on the server.
The subsequent steps will run with the existing configuration
of the plugin.
Using existing password for root.

Estimated strength of the password: 100 
Change the password for root ? ((Press y|Y for Yes, any other key for No) : Y

New password: 

Re-enter new password: 

Estimated strength of the password: 100 
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : Y
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y
Success.

Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : Y
Success.

By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.

Remove test database and access to it? (Press y|Y for Yes, any other key for No) : Y
 - Dropping test database...
Success.

 - Removing privileges on test database...
Success.

Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : Y
Success.

All done! 
[root@SERVER ~]# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 11
Server version: 5.7.10 MySQL Community Server (GPL)

Mira los últimos 10 minutos de este video , te enseña como lo haces.

3
3
3
2017-11-10 20:13:46 +0000

En mi caso tenía una base de datos corrupta, después de reiniciar mysql en Debian el acceso de root no tenía contraseña. La solución fue esta:

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'test';

Algunas otras respuestas también han mencionado el plugin de contraseña nativa pero así es como se puede hacer sin complicados retoques. Así es como debe ser cambiado.

3
3
3
2014-02-21 17:05:47 +0000

Inténtalo:

mysql --no-defaults --force --user=root --host=localhost --database=mysql 
UPDATE user SET Password=PASSWORD('NEWPASSWORD') where USER='root';
FLUSH PRIVILEGES;