How to open external network access rights for mysql

How to open external network access rights for mysql

As shown below:

Mainly execute authorization commands:

Two ways

1. Allow any host to connect to the local server with user bd and password bdpw

mysql> GRANT ALL PRIVILEGES ON *.* TO 'bd'@'%' IDENTIFIED Y 'bdpw' WITH GRANT OPTION;
mysql> flush privileges;

2. Allow specific IP addresses to connect to the local server with user bd and password bdpw

mysql> GRANT ALL PRIVILEGES ON *.* TO 'bd'@'172.16.4.198' DENTIFIED BY 'bdpw' WITH GRANT OPTION; 
mysql> flush privileges;

Notice:

1. Enter the password in the Command Line Client or enter the Nivacat command line interface.

2. Input: use mysql;

3. Query host input: select user,host from user;

If there is a host value of %, execute the authorization statement directly; if not, execute step 4

4. Create a host

If there is no host value of "%", select an open user (bd) and execute

mysql> update user set host='%' where user='bd'; 
mysql> flush privileges;

5. Authorized user *.* indicates authorization of all permissions

mysql> GRANT ALL PRIVILEGES ON *.* TO 'bd'@'%' IDENTIFIED BY 'bdpw' WITH GRANT OPTION; 
mysql> flush privileges;

The above method of opening external network access rights for 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 set up to allow external network access to MySQL
  • Mysql allows external network access settings steps
  • Sharing the detailed process of setting up Mysql5.6 to allow external network access
  • How to set up MySQL to allow external network access
  • The whole process of Mysql opening external network access

<<:  5 Easy Ways to Free Up Space on Ubuntu

>>:  How to delete a property of an object in JavaScript

Recommend

Summary of methods for cleaning Mysql general_log

Method 1: SET GLOBAL general_log = 'OFF';...

Solution to Linux QT Kit missing and Version empty problem

Currently encountering such a problem My situatio...

The Complete List of MIME Types

What is MIME TYPE? 1. First, we need to understan...

How to move mysql5.7.19 data storage location in Centos7

Scenario: As the amount of data increases, the di...

React Router V6 Updates

Table of contents ReactRouterV6 Changes 1. <Sw...

Use of Linux stat command

1. Command Introduction The stat command is used ...

Zabbix monitoring docker application configuration

The application of containers is becoming more an...

How to install and configure MySQL and change the root password

1. Installation apt-get install mysql-server requ...

Detailed explanation of the role of key in React

Table of contents Question: When the button is cl...

Solution to 2059 error when connecting Navicat to MySQL

Recently, when I was learning Django, I needed to...

DockerToolBox file mounting implementation code

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

Use of environment variables in Docker and solutions to common problems

Preface Docker can configure environment variable...

How to implement call, apply and bind in native js

1. Implement call step: Set the function as a pro...