Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to deal with the 1045 error in navicat connection mysql

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces the navicat connection mysql 1045 error how to deal with, has a certain reference value, friends in need can refer to. I hope you will learn a lot after reading this article. Next, let the editor take you to learn about it.

1045 error occurred in Navicat connection mysql

There is 1045 using Navicat to connect to mysql, possibly because you forgot your password.

The following methods can help you reset your password:

1. Run the cmd program with administrator privileges

2. Cd C:\ Program Files (x86)\ MySQL\ MySQL Server 5.7\ bin

3. Close the mysqld process

> > tasklist | findstr mysqld command can be used to check whether mysqld is running, and its PID can be found when it is running.

> > taskkill / F / PID xxxx xxxx is the pid value obtained from the previous command

4. Skip permissions to log in to the MySQL server

> > mysqld-- skip-grant-tables

Close cmd and run cmd again with administrator privileges

5. Change the password

> > cd C:\ Program Files (x86)\ MySQL\ MySQL Server 5.7\ bin

> > mysql

> > update mysql.user set authentication_string=password ('123456') where user = 'root'

> > flush privileges

> > SELECT * from mysql.user\ G

Find the authentication_string entry of the root user and write down its value

> > update mysql.user set authentication_string ='* 6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9' where user = 'root';here user =' root'

> > flush privileges

> > quit

6. Restart mysql

> > net start mysql

7. Try to connect. If prompted by 1862, change the password and connect again.

> > mysqladmin-uroot-p password

Connect the test again

The great task has been completed!

Thank you for reading this article carefully. I hope the editor will share the 1045 errors in navicat connection mysql and how to deal with the content. At the same time, I also hope you can support us, pay attention to the industry information channel, and find out if you encounter problems. Detailed solutions are waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report