How to enable MySQL remote connection in Linux server

How to enable MySQL remote connection in Linux server

Preface

Learn MySQL to reorganize previous non-MK records

describe

If it is not enabled, an error message will be displayed when connecting to the database: 2003-can't connect to MYSQL

Methods/Steps

•first step

Remotely connect to the Linux system and make sure the MySQL database has been installed on the Linux system. Log in to the database.

mysql -u$user -p $pwd

•Step 2

Create a user for remote connection

GRANT ALL PRIVILEGES ON *.* TO '$username'@'%' IDENTIFIED BY '$password' WITH GRANT OPTION;

$username indicates the user name, % indicates that all computers can connect, or you can set a certain IP address to run the connection, $password indicates the password

•Step 3

Execute the flush privileges; command to take effect immediately.

FLUSH PRIVILEGES;

• Step 4

Query the database user

SELECT DISTINCT CONCAT('User: ''',user,'''@''',host,''';') AS query FROM mysql.user;

•Step 5

Then open vim /etc/mysql/my.cnf

Set bind-address = 127.0.0.1

Set to bind-address = 0.0.0.0 (device address)

Restart

/etc/init.d/mysql restart

• Check the MYsql global port (the default is 3306)
#Check the port number

show global variables like 'port';

So far, the configuration has been completed

You may also be interested in:
  • How to install MySQL and enable remote connection on cloud server Ubuntu_Server_16.04.1
  • How to modify mysql to allow remote connections
  • How to configure MySQL on Ubuntu 16.04 server and enable remote connection
  • How to enable remote connection (multiple backups) for MySQL database
  • mysql opens remote connection (mysql opens remote access)
  • How to enable remote connection to MySQL database
  • Detailed explanation of MySQL remote connection permission

<<:  How to use shell scripts in node

>>:  MySQL installation tutorial under Centos7

Recommend

Vue implements a movable floating button

This article example shares the specific code of ...

Detailed explanation of the order of JS object traversal

Some of you may have heard that the order of trav...

Issues and precautions about setting maxPostSize for Tomcat

1. Why set maxPostSize? The tomcat container has ...

A brief discussion on Linux signal mechanism

Table of contents 1. Signal List 1.1. Real-time s...

A brief introduction to Linux performance monitoring commands free

When the system encounters various IO bottlenecks...

How to use LibreOffice to convert document formats under CentOS

Project requirements require some preprocessing o...

Implementation of interactive data between QT and javascript

1. Data flows from QT to JS 1. QT calls the JS fu...

A brief analysis of the use of the HTML webpack plugin

Using the html-webpack-plugin plug-in to start th...

Vue implements book management case

This article example shares the specific code of ...

Sample code for implementing music player with native JS

This article mainly introduces the sample code of...

How to use type enhancement without typingscript

Preface Due to the weak typing of JS, loose writi...

Robots.txt detailed introduction

Robots.txt is a plain text file in which website ...