Welke versie van mySQL gebruik je? Ik gebruik 5.7.10 en had hetzelfde probleem met inloggen als root
Er zijn 2 problemen - waarom kan ik om te beginnen niet inloggen als root, en waarom kan ik 'mysqld_safe' niet gebruiken om mySQL te starten om het root-wachtwoord opnieuw in te stellen.
Ik heb geen antwoord op het instellen van het root-wachtwoord tijdens de installatie, maar dit is wat je doet om het root-wachtwoord opnieuw in te stellen
Bewerken het initiële root-wachtwoord bij de installatie kan worden gevonden door
. uit te voerengrep 'temporary password' /var/log/mysqld.log
http://dev.mysql.com /doc/refman/5.7/en/linux-installation-yum-repo.html
-
systemd
wordt nu gebruikt om voor mySQL te zorgen in plaats vanmysqld_safe
(daarom krijg je het-bash: mysqld_safe: command not found
fout - het is niet geïnstalleerd) -
De
user
tabelstructuur is gewijzigd.
Dus om het root-wachtwoord opnieuw in te stellen, start je mySQL nog steeds met --skip-grant-tables
opties en update de user
tabel, maar hoe je het doet is veranderd.
1. Stop mysql:
systemctl stop mysqld
2. Set the mySQL environment option
systemctl set-environment MYSQLD_OPTS="--skip-grant-tables"
3. Start mysql usig the options you just set
systemctl start mysqld
4. Login as root
mysql -u root
5. Update the root user password with these mysql commands
mysql> UPDATE mysql.user SET authentication_string = PASSWORD('MyNewPassword')
-> WHERE User = 'root' AND Host = 'localhost';
mysql> FLUSH PRIVILEGES;
mysql> quit
*** Edit ***
As mentioned my shokulei in the comments, for 5.7.6 and later, you should use
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass';
Or you'll get a warning
6. Stop mysql
systemctl stop mysqld
7. Unset the mySQL envitroment option so it starts normally next time
systemctl unset-environment MYSQLD_OPTS
8. Start mysql normally:
systemctl start mysqld
Try to login using your new password:
7. mysql -u root -p
Referentie
Zoals het zegt op http://dev.mysql.com /doc/refman/5.7/en/mysqld-safe.html ,
Dat brengt je naar http://dev .mysql.com/doc/refman/5.7/en/server-management-using-systemd.html
waar het de systemctl set-environment MYSQLD_OPTS=
vermeldt naar de onderkant van de pagina.
De commando's voor het opnieuw instellen van het wachtwoord staan onderaan http:// dev.mysql.com/doc/refman/5.7/en/resetting-permissions.html