How to allow remote connection in MySql

How to allow remote connection in MySql

How to allow remote connection in MySql

To achieve this goal, two things need to be done

  1. Activate user permissions
  2. Unbind local

Activate user permissions

First log in to the MySQL server

//You can log in to mysql directly without using spaces -u username -p password mysql> use mysql
mysql> select user, host from user;

Rendering

After executing the code, you will see all users and their corresponding hosts

The host refers to the IP address that is allowed to be accessed, and % means any IP. Of course, if it is your local server, you can also configure it to a local IP.

Users can use SQL statements to set host to all

//Update the host. Here you need to select an existing user and host.
//In the user table, user and host together are the primary key, so they cannot be repeated. As shown in the figure above, if you only query the root update, an error will be reported mysql> update user set host = '%' where user = 'root' and host = 'localhost'

This modifies the permissions of an existing user.

Or

You can choose to recreate new user permissions.

// Of course, you can also specify some permissions, such as read-only mysql>GRANT ALL PRIVILEGES ON *.* TO 'newuser'@'%' IDENTIFIED BY 'newpassword' WITH GRANT OPTION;

The following is a list of global permissions:

Global management permissions:

FILE: Read and write files on the MySQL server.
PROCESS: Display or kill service threads belonging to other users.
RELOAD: Reload access control lists, refresh logs, etc.
SHUTDOWN: Shut down the MySQL service.

Database/table/column permissions:

ALTER: Modify existing data tables (such as adding/deleting columns) and indexes.
CREATE: Create a new database or table.
DELETE: Deletes records from a table.
DROP: Delete a table or database.
INDEX: Create or delete an index.
INSERT: Add records to the table.
SELECT: Display/search records of a table.
UPDATE: Modify existing records in the table.

Special permissions:

ALL: Allows you to do anything (same as root).
USAGE: Only login is allowed – nothing else is allowed.

Unbind address

I have enabled the permission before, but the local binding has not been released, so I still cannot connect to the server database through the command line locally. Later, I read some information and learned about address binding.

My server is Ubuntu Server and I installed mysql via apt-get. The location of the configuration file is as follows:

/etc/mysql/my.conf
One of the lines is bind-address = 127.0.0.1
Just comment it out

If it is a Windows server, it should be the my.ini file, and you need to find it in the location where MySQL is installed.

From now on, you can access the remote MySQL database locally through mysql -h host -r -p

After the address binding is released, you need to restart the MySQL service to take effect

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • How to enable remote connection to MySQL database
  • Detailed explanation of remote connection to MySQL authorization method
  • Solution to MySQL remote connection loss problem (Lost connection to MySQL server)
  • mysql remote connection database method collection
  • How to configure mysql to allow remote connections
  • How to solve the problem of slow remote connection to MySQL (mysql_connect opens the connection slowly)
  • Solution to Navicat's inability to remotely connect to MySQL
  • A solution to MYSQL not being able to connect remotely (s not allowed to connect to this MySQL server)
  • How to solve the problem that MySQL cannot be connected remotely
  • mysql opens remote connection (mysql opens remote access)

<<:  Detailed explanation of achieving high availability of eureka through docker and docker-compose

>>:  JavaScript code to implement a simple calculator

Recommend

Vue implements mobile phone verification code login

This article shares the specific code of Vue to i...

Version numbers in css and js links in HTML (refresh cache)

background Search the keyword .htaccess cache in ...

CSS new feature contain controls page redrawing and rearrangement issues

Before introducing the new CSS property contain, ...

HTML+CSS to achieve charging water drop fusion special effects code

Table of contents Preface: accomplish: Summarize:...

MySQL 8.0.11 MacOS 10.13 installation and configuration method graphic tutorial

The process of installing MySQL database and conf...

Four completely different experiences in Apple Watch interaction design revealed

Today is still a case of Watch app design. I love...

How to optimize MySQL performance through MySQL slow query

As the number of visits increases, the pressure o...

Detailed explanation of the use of default in MySQL

NULL and NOT NULL modifiers, DEFAULT modifier, AU...

How to use JSX to implement Carousel components (front-end componentization)

Before we use JSX to build a component system, le...

MySQL transaction isolation level details

serializable serialization (no problem) Transacti...

Linux dual network card binding script method example

In Linux operation and configuration work, dual n...

Teach you how to achieve vertical centering elegantly (recommended)

Preface There are many ways to center horizontall...

Linux file systems explained: ext4 and beyond

Today I will take you through the history of ext4...

Add crontab scheduled tasks to debian docker container

Now most of the Docker images are based on Debian...