Install mysql windows in archive version
https://www.mysql.com download package first.
unpackage archive first, add ini file
to the dirctory root.
1 | mysqld –initialize-insecure –user=mysql |
If success then use mysql -u root -p
no password login.
If failed then delete data file , mysqld --initialize
reinit mysql.
If login still failed like this:1
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
stop mysql net stop mysql
use mysqld --skip-grant-tables
or
add skip-grant-tables
to my.ini and start to skip mysql privilege check
then :1
2update user set authentication_string=password("root") where user="root";
flush privileges;
delete skip configuration, and restart mysql
https://blog.csdn.net/wokaowokaowokao12345/article/details/76736152
https://blog.csdn.net/u012730299/article/details/51840416
https://www.jb51.net/article/100718.htm