sql >> Database >  >> RDS >> Mysql

Hoe het MySQL-rootaccountwachtwoord op CentOS7 wijzigen?

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 voeren
grep 'temporary password' /var/log/mysqld.log

http://dev.mysql.com /doc/refman/5.7/en/linux-installation-yum-repo.html

  1. systemd wordt nu gebruikt om voor mySQL te zorgen in plaats van mysqld_safe (daarom krijg je het -bash: mysqld_safe: command not found fout - het is niet geïnstalleerd)

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



  1. hoe de huidige datum in een DATE-veld in te voegen in dd/mm/jjjj-formaat in oracle

  2. hoe ISO-8601 Gregoriaanse datumtabel te maken in postgres

  3. Hoe de volgorde van invoeging in SQL Server te behouden?

  4. MySQL:Sorteer op veldgrootte/lengte