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

mysql jak naprawić Access denied for user 'root'@'localhost'

Zanim coś spieprzę, kiedy zaloguję się za pomocą $ mysql -u root -p i pokażę bazy danych:

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

Następnie próbowałem stworzyć nowego użytkownika i zauważyłem, że coś jest nie tak z PRIVILEGES.

Więc usunąłem nowych użytkowników, i chyba przypadkowo usunąłem ‘root’ i ‘Admin’.

Następnie próbowałem ponownie utworzyć ‘root’, ale okazało się, że przy nadawaniu wszystkich uprawnień wystąpił błąd Access odmawiający dostępu.

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)

Jeśli ponownie zaloguję się do MySQL używając $ mysql -u root -p i pokażę bazy danych,

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

Wszystkie inne bazy danych zniknęły.

Jak teraz naprawić MySQL?

Nie mogę znaleźć bazy danych ‘myql’, nie mogę stworzyć bazy danych, stworzyć użytkownika, cokolwiek spróbuję zrobić, pojawi się błąd.

ERROR 1045 (28000): Odmowa dostępu dla użytkownika ‘root’@‘localhost’ (używając hasła: TAK).

Czy powinienem przeinstalować MySQL używając MacPortów? W przypadku reinstalacji, stracę bazę danych game_data, prawda?

Odpowiedzi (6)

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

Postępuj zgodnie z poniższymi krokami.

  1. Uruchom instancję serwera MySQL lub demona z opcją --skip-grant-tables (ustawienia bezpieczeństwa).

  2. Wykonaj poniższe polecenia.

Jeśli wystąpi nieznane pole Błąd hasła powyżej użyj:

update user set authentication_string=password('my_password') where user='root';
  1. Na koniec uruchom ponownie instancję/emon bez opcji --skip-grant-tables.

Powinieneś teraz móc połączyć się z nowym hasłem.

$ mysql -u root -p

Podaj hasło: my_password

Napraw MySQL “Unable to lock 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

Żadne z powyższych nie było dla mnie pomocne. Stwierdziłem, że muszę oczyścić metodę pluginu. W 5.6 mogłem zrobić:

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

W 5.7 znalazłem:

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

Zgodnie z dokumentacją, z wtyczką ustawioną na pusty ciąg znaków, powinna ona być domyślnie ustawiona na myql_native_password, ale może być mylona przez pusty hash hasła. Po więcej niuansów, możesz przeczytać dokumentację tutaj: https://dev.mysql.com/doc/refman/5.7/en/native-authentication-plugin.html

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

Upewnij się również, że w tabeli user jest puste pole plugin (może być np. "unix_socket").

Od wersji 5.5.7 mysql ma różne wtyczki auth suppor https://dev.mysql.com/doc/refman/5.6/en/authentication-plugins.html

Więc jeśli masz nie puste pole plugin to hasło będzie ignorowane i będzie ostrzeżenie w logu błędów mysql (dla mnie jest to /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)

Możesz zobaczyć coś takiego;

[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

Zabezpieczenie wdrożenia serwera 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:

Jeśli zobaczysz, że jest napisane

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

Obejrzyj ostatnie 10 minut ten film , to nauczy Cię jak to zrobić.

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

W moim przypadku miałem uszkodzoną bazę danych, po ponownym uruchomieniu mysql w Debianie, login roota był bez hasła. Rozwiązanie było następujące :

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

Kilka innych odpowiedzi również wspomniało o wtyczce native_password, ale w ten sposób można to zrobić bez skomplikowanych manipulacji. Tak należy to zmienić.

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

Spróbuj:

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