[Reprint] solve mysql "Accessdeniedforuser & #39; root & # 3_MySQL

Source: Internet
Author: User
[Reprint] solve mysql "Accessdeniedforuseramp; #39; rootamp; #39; @ amp; #39; localhostamp; #39 ;" Statement: This article is reproduced from: Http://blogold.chinaunix.net/u1/35320/showart_305024.html

My system is ubuntu6.06. the newly installed mysql always has an error prompt when entering the mysql tool:
# Mysql-uroot-p
Enter password:
ERROR 1045 (28000): Access denied for user 'root' @ 'localhost' (using password: NO)

Use the methods described on the Internet to change the password of the root user:
# Mysqladmin-uroot-p password 'newpassword'
Enter password:
Mysqladmin: connect to server at 'localhost' failed
Error: 'Access denied for user' root' @ 'localhost' (using password: YES )'

Now I have found the solution as follows (please test method 3 first, thank you !) :
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: <输入新设的密码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: <输入[client]节的密码>
Mysql> UPDATE user SET Password = PASSWORD ('newpassword') where USER = 'root ';
Mysql> flush privileges;
Mysql> quit

# Mysql-uroot-p
Enter password: <输入新设的密码newpassword>

Mysql>


Method 3:
I have not tested this method, because the default password of my root user has been modified by me. if you have time to test it, let me know the result. thank you !!
# Mysql-uroot-p
Enter password: <输入 etc mysql debian.cnf文件中[client]节提供的密码>

At this point, many problems have been solved!

I tried the first method. OK. I want to share it with my friends .........

Han Xi has been insisting on
Learn and be happy ......
Han Xi's QQ: 785446153
Han Xi invites you to use 115 network disk: http://115.com/

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.