After mysql creates a database, the following error occurs: Access denied for user 'root' @ '%' to database 'xxx'. mysqldenied

Source: Internet
Author: User

After mysql creates a database, the following error occurs: Access denied for user 'root' @ '%' to database 'xxx'. mysqldenied

Preface

Recently, I encountered a problem during my work. I encountered an error when I connected to the database after creating the database. The error code is Access denied for user 'root' @ '%' to database 'xxx ', after finding relevant information, I finally solved this problem. So I want to summarize it and share it with my friends who need it. Let's take a look at it.

Solution Process

1. Create a database

Create database mytest;

2. When connecting to the database, the following error is reported:

Access denied for user 'root' @ '%' to database 'mytest'

Cause:After the database is created, authorization is required. This issue is not typically found during local access.

3. Authorize database operations

Grant all on xxx. * to 'root' @ '%' identified by 'Password' with grant option;

Xxx indicates the database created, password indicates the user password, and root indicates the password.

Summary

The above is all the content of this article. I hope the content of this article will help you in your study or work. If you have any questions, please leave a message, thank you for your support.

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.