Linux platform mysql enable remote login

Linux platform mysql enable remote login

During the development process, I often encounter problems with remote access to MySQL. I need to search every time, which feels too troublesome. I record it here so that I can check it later.

First, access the local mysql (log in to the terminal using ssh and enter the following command):

mysql -uroot -p

After entering the password to log in, enter the following statement:

use mysql;
grant all privileges on *.* to 'user'@'%' identified by 'password' with grant option;

in:

user is the user name

The default for mysql is root

Password is the password you set yourself

% represents any host, you can also specify an IP address

This allows any remote host to access it.

Example:

grant all privileges on *.* to 'root'@'192.168.1.100' identified by '' with grant option;

That is, allow 192.168.1.100 to log in as the root user without a password.

Okay, that’s all, hope it helps you.

You may also be interested in:
  • How to disable root remote login and add new users in Linux
  • Configuring remote password-free login under Linux
  • Teach you how to modify the Linux remote login welcome prompt information
  • Novice learn Linux commands: ssh command (remote login)
  • Use expect script to realize automatic login of remote machine in Linux
  • Remote login to Windows XP desktop under Linux rdesktop operating system
  • Linux remote login implementation tutorial analysis

<<:  Solution to the problem that docker nginx cannot be accessed after running

>>:  Implementing the page turning effect through sliding and the click event problem on the mobile terminal

Recommend

In-depth explanation of JavaScript this keyword

Table of contents 1. Introduction 2. Understand t...

webpack -v error solution

background I want to check the webpack version, b...

A small question about the execution order of SQL in MySQL

I encountered a sql problem at work today, about ...

Some common properties of CSS

CSS background: background:#00ffee; //Set the back...

Control the light switch with js

Use js to control the light switch for your refer...

Summary of Linux ps and pstree command knowledge points

The ps command in Linux is the abbreviation of Pr...

js to achieve 3D carousel effect

This article shares the specific code for impleme...

A detailed introduction to HTML page loading and parsing process

The order in which the browser loads and renders H...

Linux installation Redis implementation process and error solution

I installed redis today and some errors occurred ...

Nginx uses the Gzip algorithm to compress messages

What is HTTP Compression Sometimes, relatively la...

Form submission page refresh does not jump

1. Design source code Copy code The code is as fol...

Summary of three ways to create new elements

First: via text/HTML var txt1="<h1>Tex...

MySQL InnoDB transaction lock source code analysis

Table of contents 1. Lock and Latch 2. Repeatable...