How to modify mysql to allow remote connections

How to modify mysql to allow remote connections

Regarding the issue of MySQL remote connection, we often encounter MySQL database stored on someone's computer when working in the company. If we want to connect to the MySQL service, the computer with the MySQL service installed must enable remote connection

The first step is to connect to your database using DOS (I am talking about Win here)

Then select the system library, mysql

Command: use mysql , of course you can also see which libraries have been created in your mysql

Then select mysql

Then execute the command to modify permissions: GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;

This is a very crucial sentence.

After execution, clear the cache

ok basically

Don't worry, you can check it out.

Now the database in mysql on your machine can be accessed by others if it is in the local area network.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to install MySQL and enable remote connection on cloud server Ubuntu_Server_16.04.1
  • How to enable MySQL remote connection in Linux server
  • 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

<<:  Detailed explanation of FTP environment configuration solution (vsftpd)

>>:  How to quickly build a static website on Alibaba Cloud

Recommend

4 ways to modify MySQL root password (summary)

Method 1: Use the SET PASSWORD command First log ...

Solve the problem of invalid utf8 settings in mysql5.6

After the green version of mysql5.6 is decompress...

How to run commands on a remote Linux system via SSH

Sometimes we may need to run some commands on a r...

jQuery realizes the effect of theater seat selection and reservation

jQuery realizes the effect of theater seat select...

Implementation of master-slave replication in docker compose deployment

Table of contents Configuration parsing Service C...

Summary of common MySQL table design errors

Table of contents Mistake 1: Too many columns of ...

A simple explanation of MySQL parallel replication

1. Background of Parallel Replication First of al...

MySql inserts data successfully but reports [Err] 1055 error solution

1. Question: I have been doing insert operations ...

Vue.js implements the code of clicking the icon to zoom in and leaving

The previous article introduced how Vue can reali...

Complete steps to build a squid proxy server in linux

Preface This article mainly introduces the releva...

Nginx/Httpd load balancing tomcat configuration tutorial

In the previous blog, we talked about using Nginx...

How to monitor global variables in WeChat applet

I recently encountered a problem at work. There i...