[Mysql] restoring mysql and & quot; Access denied for user & #39; root & #39 ;@& #39; IP & #39; & quot; after windows is reinstalled; troubleshooting, mysqldenied

Source: Internet
Author: User

[Mysql] After windows is reinstalled, mysql and "Access denied for user 'root' @ 'IP'" are restored. mysqldenied

Mysql databases are actually green software and can still be used after the system is reinstalled.


1. Reload the system and keep the original mysql installation directory and data directory.

2. Create a batch file to start mysql: [run. bat] the file is stored in the bin under the mysql installation directory.

Mysqld.exe -- defaults-file = ../my-default.ini -- console

3. run. bat.



If the following error occurs during database connection: "Access denied for user 'root' @ 'IP '"

1. log on to the system as an administrator, stop the mysql service, or end the mysqld process.
2. Enter the command line and go to the mysql installation directory. Assume that the installation directory is d: \ mysql \, and CMD enter the command line.
3. Run d: \ mysql \ bin \ mysqld-nt -- skip-grant-tables to start mysql and disable permission check.

4. Run d: \ mysql \ bin \ mysqladmin-u root flush-privileges password "newpassword" to reset the root password.
5. Restart the mysql service.



In Linux, the following methods can be used:

Method 1:
#/Etc/init. d/mysql stop
# Mysqld_safe -- user = mysql -- skip-grant-tables -- skip-networking &
# Mysql-u root mysql
Mysql> UPDATE user SET Password = PASSWORD ('newpassword') where USER = 'root ';
Mysql> flush privileges;
Mysql> quit
#/Etc/init. d/mysql restart
# Mysql-uroot-p
Enter password: <Enter the new password newpassword>
Mysql>
Method 2:
Directly use the username and password provided in the [client] section of the/etc/mysql/debian. cnf file:
# Mysql-udebian-sys-maint-p
Enter password: <Enter the password in the [client] section>
Mysql> UPDATE user SET Password = PASSWORD ('newpassword') where USER = 'root ';
Mysql> flush privileges;
Mysql> quit
# Mysql-uroot-p
Enter password: <Enter the new password newpassword>
Mysql>


Zookeeper
Mysql installation error access denied for user 'root' @ localhost (using password

One step backward is the password setting.

The first line of the Password is Current Password:
This indicates the current password, because the default password has not been installed in mysql. Therefore, no input is required.
Do not enter this password. If you enter the password for the next two lines, no error will be reported. ...

Install mysql 1045 Access denied for user 'root' @ 'localhost' (using pasword: No) in windows)

Have you installed mysql before? If you have installed mysql, You Need To uninstall it before installing it.
 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.