mysql comment réparer Accès refusé pour l'utilisateur 'root'@'localhost&#39 ;

Avant que je ne foire quelque chose, quand je me connecte en utilisant $ mysql -u root -p, et que j'affiche les bases de données :

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

Ensuite, j'ai essayé de créer un nouvel utilisateur et je remarque que quelque chose ne va pas avec les PRIVILEGES.

J'ai donc supprimé les nouveaux utilisateurs, et je suppose que j'ai supprimé le 'root&#39 ; et le 'Admin&#39 ; par accident.

J'essaie ensuite de créer à nouveau l'utilisateur "root", mais j'obtiens une erreur d'accès refusé lorsque j'accorde tous les privilèges.

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 je me connecte à nouveau à MySQL en utilisant $ mysql -u root -p, et que j'affiche les bases de données,

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

Toutes les autres bases de données ont disparu.

Comment puis-je réparer MySQL maintenant ?

Je ne trouve pas la base de données 'mysql&#39 ; je ne peux pas créer de base de données, créer d'utilisateur, tout ce que j'essaie de faire obtient une erreur.

ERROR 1045 (28000) : Accès refusé pour l'utilisateur 'root'@'localhost&#39 ; (utilisant le mot de passe : YES).

Dois-je réinstaller MySQL en utilisant MacPorts ? Si je réinstalle, je vais perdre la base de données game_data, n'est-ce pas ?

Solution

Suivez les étapes ci-dessous.

  1. Démarrez l'instance ou le démon du serveur MySQL avec l'option --skip-grant-tables (paramètre de sécurité).

     $ mysqld --skip-grant-tables
  2. Exécutez ces instructions.

     $ mysql -u root mysql
     $mysql> UPDATE user SET Password=PASSWORD('my_password&#39 ;) where USER='root' ;
     $mysql> FLUSH PRIVILEGES ;

Si vous êtes confronté à l'erreur du champ inconnu Mot de passe ci-dessus, utilisez :

update user set authentication_string=password('my_password') where user='root';
  1. Enfin, redémarrez l'instance/daemon sans l'option --skip-grant-tables.

     $ /etc/init.d/mysql restart

Vous devriez maintenant être capable de vous connecter avec votre nouveau mot de passe.

$ mysql -u root -p

Entrez le mot de passe : my_password.

Correction de l'erreur MySQL "Unable to lock ibdata1" (Impossible de verrouiller ibdata1)

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
Commentaires (8)
grep 'temporary password' /var/log/mysqld.log
Sort date (newest date)

Vous pouvez voir quelque chose comme ceci ;

[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

Sécurisation du déploiement du serveur 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 vous voyez qu'il est écrit

... 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)

Regardez les 10 dernières minutes de [cette vidéo][1], vous y apprendrez comment faire.

[1] : https://www.youtube.com/watch?v=L2m3BM28Mz0

Commentaires (3)

Essayez-le :

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