Das anfängliche Passwort von MySQL ist leer. Die Methode zum Ändern des anfänglichen Passworts ist: 1. Verwenden Sie das leere anfängliche Passwort, um sich beim MySQL-Konto anzumelden. 2. Ändern Sie das Root-Passwort durch Anweisungen wie „SETPASSWORD = PASSWORD(“. 123456');".
Die Betriebsumgebung dieses Artikels: Windows 7-System, MySQL-Version 5.7.14, Dell G3-Computer.
Wie lautet das Anfangspasswort von MySQL?
Das Anfangspasswort von MySQL ist leer.
MySQL verfügt über drei Methoden zum Ändern des Anfangspassworts:
Methode 1:
1. Melden Sie sich mit einem leeren Anfangspasswort beim MySQL-Konto an:
mysql-uroot -p
SETPASSWORD = PASSWORD('123456');
mysql-uroot -p
2. Ändern Sie das Root-Passwort:
mysqladmin -u root password '123456'
Methode 3:
1. Verwenden Sie ein leeres Anfangspasswort, um sich anzumelden zum MySQL-Konto:
mysql-uroot -p
2. Ändern Sie das Root-Passwort:
mysql> update user set Password=password("123456") where User='root'; Query OK, 4 rows affected (0.01 sec) Rows matched: 4 Changed: 4 Warnings: 0 mysql> flush privileges; Query OK, 0 rows affected (0.04 sec) mysql> select Host,User,password from user where user='root'; +-----------------------+------+-------------------------------------------+ | Host | User | password | +-----------------------+------+-------------------------------------------+ | localhost | root | *5626ED34B75C6C508BA2A3D0A4F6E4C58823138C | | localhost.localdomain | root | *5626ED34B75C6C508BA2A3D0A4F6E4C58823138C | | 127.0.0.1 | root | *5626ED34B75C6C508BA2A3D0A4F6E4C58823138C | | ::1 | root | *5626ED34B75C6C508BA2A3D0A4F6E4C58823138C | +-----------------------+------+-------------------------------------------+ 4 rows in set (0.00 sec)
【Verwandte Empfehlung:
MySQL-Video-TutorialDas obige ist der detaillierte Inhalt vonWie lautet das MySQL-Anfangspasswort?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!