Nach der Installation von MySQL ist in der Regel das root-Passwort nicht gesetzt.
Das sollte unbedingt nachgeholt werden.
In der Konsole gibt man folgende Kommandos ein:
mysql --user=root
update mysql.user set Password=PASSWORD('your_new_root_password') where User='root';
flush privileges;
quit;
Please check syntax because
Please check syntax because there is a mistake on it.
.... Password='Your new Password' .... without bracket's
No, all is well. The part
No, all is well. The part Password=PASSWORD('Your new Password') means, that MySQL will encrypt the password before storage.
Post new comment