MySQL安装提示一下错误 The security settings could not be applied to the database because the connection has failed with the following error. Error Nr. 1045 Access denied for user 'root'@'localhost' (using password: YES) If a personal firewall is running on y…
update user set password_expired='N' where host = '127.0.0.1'; update user set password=password('root') where user='root'; update user set host='%' where user='root' and host='localhost'; flush privileges;…