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 process of installing nginx1.9.1 on centos8

1.17.9 More delicious, really Nginx download addr...

Implementation of running SQL Server using Docker

Now .net core is cross-platform, and everyone is ...

Faint: "Use web2.0 to create standard-compliant pages"

Today someone talked to me about a website develo...

7 skills that great graphic designers need to master

1》Be good at web design 2》Know how to design web p...

How to change the root password in MySQL 5.7

Starting from MySQL 5.7, many security updates ha...

Detailed process of building nfs server using Docker's NFS-Ganesha image

Table of contents 1. Introduction to NFS-Ganesha ...

Common errors and solutions for connecting Navicat to virtual machine MySQL

Question 1 solve Start the service: service mysql...

JavaScript to achieve custom scroll bar effect

In actual projects, the up and down scroll bars a...

Several ways to implement inheritance in JavaScript

Table of contents Structural inheritance (impleme...

Share some tips on using JavaScript operators

Table of contents 1. Optional chaining operator [...

Tutorial on installing jdk1.8 on ubuntu14.04

1. Download jdk download address我下載的是jdk-8u221-li...

How to use ES6 class inheritance to achieve a gorgeous ball effect

Table of contents introduce Implementation steps ...

How to use dynamic parameters and calculated properties in Vue

1. Dynamic parameters Starting from 2.6.0, you ca...

CSS to achieve horizontal lines on both sides of the middle text

1. The vertical-align property achieves the follo...