MySQL 1130 exception, unable to log in remotely solution

MySQL 1130 exception, unable to log in remotely solution

question:

mysql: 1130 is not allowed to connect to this MariaDB server (no remote login permission, note: MariaDB here is an extended version of MySQL)

insert image description here

1. Enable remote login permission:

Copy the localhost user data and rename localhost to % (that is, all links can log in to the server). You can also change it to the corresponding IP address of the server. The steps are as shown in the figure:

insert image description here

2. Refresh MySQL permissions:

The specific sql is as follows:

mysql> use mysql;
mysql> flush privileges; 

insert image description here

3. Test:

Login successful

insert image description here

This is the end of this article about the detailed solution to MySQL 1130 exception and unable to log in remotely. For more related MySQL 1130 exception and unable to log in remotely solution, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • [Project layout configuration] Nosql and Python Web-Flask framework combination
  • Solve the problem of garbled data in MySQL database migration
  • SQL Writing - Row Comparison
  • Solution to MySQL connection exception and error 10061
  • Solve the problem that the SpringBoot application.yaml file configuration schema cannot execute SQL
  • Graphic tutorial on installing MySQL database and configuring environment variables on Mac
  • SQL IDENTITY_INSERT case study
  • Hotel Management System Designed and Implemented Based on JavaSwing

<<:  Analysis of product status in interactive design that cannot be ignored in design

>>:  Detailed tutorial on Docker pulling Oracle 11g image configuration

Recommend

Detailed explanation of the text-fill-color property in CSS3

What does text-fill-color mean? Just from the lit...

Detailed explanation of writing multiple conditions of CSS: not

The :not pseudo-class selector can filter element...

linux No space left on device 500 error caused by inode fullness

What is an inode? To understand inode, we must st...

HTML adaptive table method

<body style="scroll:no"> <tabl...

Vue implements card flip carousel display

Vue card flip carousel display, while switching d...

How to prevent Vue from flashing in small projects

Summary HTML: element plus v-cloak CSS: [v-cloak]...

Solution to the same IP after cloning Ubuntu 18 virtual machine

Preface I recently used a virtual machine to inst...

Detailed Linux installation tutorial

(Win7 system) VMware virtual machine installation...

Two methods to disable form controls in HTML: readonly and disabled

In the process of making web pages, we often use f...

Ubuntu installs multiple versions of CUDA and switches at any time

I will not introduce what CUDA is, but will direc...

Ubuntu 20.04 CUDA & cuDNN Installation Method (Graphical Tutorial)

CUDA installation download cuda Enter the nvidia-...

How to implement hot deployment and hot start in Eclipse/tomcat

1. Hot deployment: It means redeploying the entir...