2015-06-11 18 views
7

Sto correndo MariaDB e sto provando a reimpostare la password ma non funziona.Reset password MariaDB non funzionante

[[email protected] ~]# mysqld_safe --skip-grant-tables --skip-networking & 
[1] 11125 

Successivo password impostata:

[[email protected] ~]# mysql -u root 
Welcome to the MariaDB monitor. Commands end with ; or \g. 
Your MariaDB connection id is 1 
Server version: 5.5.37-MariaDB-wsrep-log MariaDB Stylite Build (GPL), wsrep_25.10.r3980 

Copyright (c) 2000, 2014, Oracle, Monty Program Ab and others. 

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 

MariaDB [(none)]> use mysql; 
MariaDB [mysql]> update user set password=PASSWORD("new-password") where User='root'; 
Query OK, 0 rows affected (0.00 sec) 
Rows matched: 0 Changed: 0 Warnings: 0 

MariaDB [mysql]> select * from user; 
Empty set (0.00 sec) 

Se si guarda user tabella è ancora vuota :(

Anche Ho cercato di creare un account, ma ha ottenuto seguente errore:

MariaDB [mysql]> CREATE USER 'root'@'localhost' IDENTIFIED BY 'new-password'; 
ERROR 1290 (HY000): The MariaDB server is running with the --skip-grant-tables option so it cannot execute this statement 

Cosa sto facendo male

risposta

6

FLUSH PRIVILEGES; è necessario per caricare la tabella delle password. Fatelo dopo lo UPDATE o GRANT.

Vedere User manual. (MariaDB e MySQL dovrebbero essere identici in quest'area.)

+1

in realtà, questo dovrebbe essere fatto * dopo * l'aggiornamento o il grant durante lo svuotamento della cache in memoria e ricarica i privilegi dalla tabella. [Per documentazione MySQL] (https://dev.mysql.com/doc/refman/5.0/en/flush.html) –

+1

Risolto in ritardo Risposta per allineare con il commento di Matt. –