Detailed steps to configure MySQL remote connection under Alibaba Cloud

Detailed steps to configure MySQL remote connection under Alibaba Cloud

Preface

As we all know, by default, the MySQL installed on Alibaba Cloud does not support remote connection, but we still need to use some tools to connect to MySQL, such as Navicat. At this time, we need to modify the remote connection of MySQL.

Note: After modifying the MySQL permissions, you must refresh the permissions table to make the configuration effective.

flush privileges;

Environmental prerequisite: centos7 mysql5.7

1. First, log in to MySQL on Alibaba Cloud:

mysql -u root -h localhost -p

2. Open the MySQL database   (You need to have permission to operate the mysql database, usually the root user of mysql)

use mysql

3. At this time, we have two ways to make modifications:

The first method is to directly change the host of the original user='root' and host='localhost' record to % or the specified IP

1) Setting host to % means that any IP address can connect to MySQL.

update user set host='%' where user='root' and host='localhost';

2) Of course, you can also specify the host as a certain IP

update user set host='106.39.178.131' where user='root' and host='localhost';

3) After executing the above statements, execute the following statements to refresh the permission table and make the configuration effective.

flush privileges;

The second method: add a new record

1) Add a new user newname (this new user name can also be root) with a password of and set the host to % to indicate that any IP address can connect to MySQL.

 grant all on *.* to 'newname'@'%' identified by 'Navicat_123';

2) Add a new user newname, with a password of and set the host to the specified IP address, indicating that only this IP address can connect to MySQL.

 grant all on *.* to 'newname'@'106.39.178.131' identified by 'Navicat_123';

3) After executing the above statements, execute the following statements to refresh the permission table and make the configuration effective.

flush privileges;

Of course, if you want to change to a local connection, you only need to change the corresponding user's host to localhost.

update user set host='localhost' where user='root' and host='106.39.178.131';

4. Don’t connect to Navicat right now. You need to do two more things, otherwise you will fall into the trap.

1) Check whether port 3306 of the server firewall is open. If not, open it.

2) Check whether port 3306 is open in the Alibaba Cloud security group rules.

How to check and configure reference documents: [https://help.aliyun.com/document_detail/25471.html?spm=5176.100241.0.0.IneJPl]

5. Now it’s time to connect remotely. Enter the corresponding parameters in the tool

host: the IP address of the Alibaba Cloud server

port:3306

user name: If you modify it in the first way, the user is root. If you modify it in the second way, the user is the name you set yourself. For example, mine is newname.

Password: If you modify it in the first way, the password is the root password. If you modify it in the second way, the password you set is your own password. For example, mine is Navicat_123

At this point, the moment the connection was made, weren’t you excited?

Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of Maven settings.xml configuration (specifying local warehouse and Alibaba Cloud image settings)
  • Alibaba Cloud CentOS 7 Server Build Nginx Web Service Experience Example
  • How to install the graphical interface of Alibaba Cloud ECS server
  • Docker uses nextcloud to build a private Baidu cloud disk
  • Script to restore accidentally deleted files from Baidu Cloud Disk (simple method)
  • Tutorial on mounting SSD cloud disk on Alibaba Cloud CentOS 7 system
  • PHP to achieve batch download Baidu cloud disk file example sharing
  • The Alibaba Cloud Disk invitation code (internal beta code) is real and available for free sharing. Limited daily activation. Attached is the Alibaba Cloud Disk application and download address

<<:  Logrotate implements Catalina.out log rotation every two hours

>>:  An exploration of the JS operator in problem

Recommend

Advantages and Problems of XHTML CSS Website Design

XHTML is the standard website design language cur...

Ten popular rules for interface design

<br />This is an article I collected a long ...

Detailed explanation of the pitfalls of mixing MySQL order by and limit

In MySQL, we often use order by for sorting and l...

Calling the search engine in the page takes Baidu as an example

Today, it suddenly occurred to me that it would be...

JavaScript design pattern learning proxy pattern

Table of contents Overview Implementation Protect...

How to implement HTML Table blank cell completion

When I first taught myself web development, there...

A brief analysis of the responsiveness principle and differences of Vue2.0/3.0

Preface Since vue3.0 was officially launched, man...

How to delete all contents in a directory using Ansible

Students who use Ansible know that Ansible only s...

Three methods to modify the hostname of Centos7

Method 1: hostnamectl modification Step 1 Check t...

Docker packages the local image and restores it to other machines

1. Use docker images to view all the image files ...

Detailed explanation of jQuery's core functions and event handling

Table of contents event Page Loading Event Delega...

Summary of commonly used tool functions in Vue projects

Table of contents Preface 1. Custom focus command...

Solve the problem of not finding NULL from set operation to mysql not like

An interesting discovery: There is a table with a...