How to allow all hosts to access mysql

How to allow all hosts to access mysql

1. Change the Host field value of a record in the user table in the MySQL database to %. The strange thing is that you must use the following statement to set the password

2. update user set Password=PASSWORD("123456") WHERE Host="%";

3. Execute the flush privileges command to make it take effect immediately

The above method of allowing all hosts to access mysql is all I have to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • How to quickly modify the host attribute of a MySQL user
  • Does the % in the newly created MySQL user include localhost?
  • Perfect solution to the problem that MySQL cannot connect to the database through localhost
  • Solution to the problem that MySQL can connect using localhost but cannot connect using IP
  • A brief discussion on the matching rules of host and user when Mysql connects to the database

<<:  Mini Program Recording Function Implementation

>>:  How to handle forgotten passwords in Windows Server 2008 R2

Recommend

Comprehensive analysis of MySql master-slave replication mechanism

Table of contents Master-slave replication mechan...

WeChat applet implements search box function

This article example shares the specific code for...

SVG+CSS3 to achieve a dynamic wave effect

A vector wave <svg viewBox="0 0 560 20&qu...

How to rename the table in MySQL and what to pay attention to

Table of contents 1. Rename table method 2. Notes...

DockerToolBox file mounting implementation code

When using docker, you may find that the file can...

Detailed tutorial on using the tomcat8-maven-plugin plugin in Maven

I searched a lot of articles online but didn'...

Summary of learning HTML tags and basic elements

1. Elements and tags in HTML <br />An eleme...

Detailed explanation of JavaScript Proxy object

Table of contents 1. What is Proxy? 2. How to use...

How to use echarts to visualize components in Vue

echarts component official website address: https...

The solution record of Vue failing to obtain the element for the first time

Preface The solution to the problem of not being ...

How does MySQL implement ACID transactions?

Preface Recently, during an interview, I was aske...