Mysql anonymous login cannot create a database problem solution

Mysql anonymous login cannot create a database problem solution

Frequently asked questions

Access denied for user ''@'localhost' to database 'web02' //web02 is a database I created myself

Cause analysis: In the user table of the MySQL database, there is an account with an empty username, that is, an anonymous account. As a result, although the login is done as root, it is actually an anonymous login.

Below is a comparison of the two login methods

1)mysql -u root -p

It can be seen that this most primitive method is not safe, and the system does not know whether the user is anonymous.

2)mysql -hlocalhost -uroot -p

-h represents the server name, localhost represents the local; -u represents the database user name, root is the default user name of MySQL; -p represents the password. If a password is set, you can directly enter it after -p, such as: -p123456. If the user has not set a password, just press Enter when Enter password is displayed.

This method of entering the database can quickly resolve the problem.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to create a MySQL database and support Chinese characters
  • Introduction to adding new users to MySql, creating databases for users, and assigning permissions to users
  • mysql create database, add users, user authorization practical method
  • Two ways to create a MySQL database
  • Create database and database table code with MySQL
  • Example of creating a database using PHP
  • Create database php code and write your own BLOG system with PHP
  • PHP Desktop Center (I) Creating a database
  • MySQL and PHP basics and application topics: creating database tables

<<:  HTML+VUE paging to achieve cool IoT large screen function

>>:  harborRestart operation after modifying the configuration file

Recommend

Implementing a web calculator with native JavaScript

This article shares the specific code of JavaScri...

Nginx configuration SSL and WSS steps introduction

Table of contents Preface 1. Nginx installation 1...

Solve the problem of inconsistent front and back end ports of Vue

Vue front and back end ports are inconsistent In ...

Detailed explanation of three ways to set borders in HTML

Three ways to set borders in HTML border-width: 1...

CSS3 click button circular progress tick effect implementation code

Table of contents 8. CSS3 click button circular p...

Detailed explanation of routes configuration of Vue-Router

Table of contents introduce Object attributes in ...

KTL tool realizes the method of synchronizing data from MySQL to MySQL

Use ktl tool to synchronize data from mysql to my...

MySQL 8.0.13 decompression version installation graphic tutorial under Windows

This article shares with you the MySQL 8.0.13 ins...

Docker large-scale project containerization transformation

Virtualization and containerization are two inevi...

Detailed explanation of how to manually deploy a remote MySQL database in Linux

1. Install mysql Run the following command to upd...

Reasons and solutions for not being able to detect array changes in Vue2

Table of contents Workaround Why can't I moni...

Specific usage of Vue's new toy VueUse

Table of contents Preface What is VueUse Easy to ...

Detailed explanation of using Vue custom tree control

This article shares with you how to use the Vue c...

Steps to transfer files and folders between two Linux servers

Today I was dealing with the issue of migrating a...