The solution to the 1045 error when navicat connects to mysql, modify the root password

UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
FLUSH PRIVILEGES;

Related Posts