Mysql
 sql >> Database >  >> RDS >> Mysql

Come faccio a scoprire la mia password MySQL di root?

Puoi reimpostare la password di root eseguendo il server con --skip-grant-tables e accedendo senza password eseguendo quanto segue come root (o con sudo):

# service mysql stop
# mysqld_safe --skip-grant-tables &
$ mysql -u root
mysql> use mysql;
mysql> update user set authentication_string=PASSWORD("YOUR-NEW-ROOT-PASSWORD") where User='root';
mysql> flush privileges;
mysql> quit
# service mysql stop
# service mysql start
$ mysql -u root -p

Ora dovresti essere in grado di accedere come root con la tua nuova password.

È anche possibile trovare la query che reimposta la password in /home/$USER/.mysql_history o /root/.mysql_history dell'utente che ha reimpostato la password, ma quanto sopra funzionerà sempre.

Nota:prima di MySQL 5.7 la colonna era chiamata password invece di authentication_string . Sostituisci la riga sopra con

mysql> update user set password=PASSWORD("YOUR-NEW-ROOT-PASSWORD") where User='root';