Mysql-access denied for user ' username ' @ ' localhost ' (using Password:yes) Resolution

Source: Internet
Author: User

When you save a new MySQL user with navicat, you are prompted to Access denied for user ' username ' @ ' localhost ' (using Password:yes):

Workaround:

Please log in to MySQL using the root account and execute the following command line:

    1. MySQL creates a new user, username username, password is password, change localhost to% allows the user to log on to all hosts
      CREATE USER ' username ' @ ' localhost ' identified by ' password ';
    2. To authorize this user, this example grants all permissions to the user, and you can change all privileges to a specific permission option.
      *. * represents all data tables under all databases, or can be specified as specific database tables
      GRANT all privileges on *. * to ' username ' @ ' localhost ' with GRANT OPTION
    3. Authorization to take effect

FLUSH privileges;

You can log in again.

Mysql-access denied for user ' username ' @ ' localhost ' (using Password:yes) Resolution

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.