Solve the problem that Navicat cannot connect to MySQL on the Linux server

Solve the problem that Navicat cannot connect to MySQL on the Linux server

At the beginning, I felt sad. The screenshots are as follows:

After some trouble, the solution is as follows:

First, make sure that port 3306 of MySQL on the Linux service is open to the outside world.

Switch to the directory: /etc/sysconfig , edit iptables , and copy this into it: " -A INPUT -p tcp -m tcp --dport 3306 -j ACCEPT ". The effect is as shown in the figure:

Then restart the firewall

service iptables restart

mysql opens root permissions (executed under mysql command)

Grant permissions: grant all privileges on *.* to 'root'@'% 'identified by 'password' with grant option

Refresh the privilege list: flush privileges

Modify the mysqld.cnf file in /etc/percona-server.conf.d directory

Comment out "bind 127.0.0.1"

Uncomment the line “bind-address = 0.0.0.0”

Finally restart mysql

service mysql restart

So happy, it succeeded, the screenshots are as follows:

*****************************************************************************************************

Energy is limited, and there are too many ideas. Just focus on doing one thing well.

I'm just a programmer. Write good code within 5 years, polish every word of technical blogs, and insist on zero copy and originality . The purpose of blogging is to exercise logical reasoning, deepen the systematic understanding of knowledge, and practice writing. If it happens to be helpful to others, it is really a happy thing.

*****************************************************************************************************

Summarize

The above is the editor's introduction to solving the problem that Navicat cannot connect to MySQL on the Linux server. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • When Navicat Premium connects to the database, the error message appears: 2003 Can't connect to MySQL server on''localhost''(10061)
  • How to solve the 10060 unknow error when Navicat remotely connects to MySQL
  • Navicat remote connection to MySQL implementation steps analysis
  • Solve the 1251 error when establishing a connection between mysql and navicat
  • Detailed explanation of the idea of ​​installing mysql8.0.11 and changing the root password and connecting navicat for mysql
  • Solution to 1045 error when navicat connects to mysql
  • About the problem of Navicat connecting to MySql database slowly

<<:  Javascript combined with Vue to achieve automatic path finding for any maze image

>>:  MySQL UNION operator basic knowledge points

Recommend

An article to understand the usage of typeof in js

Table of contents Base Return Type String and Boo...

Detailed tutorial on MySQL installation and configuration

Table of contents Installation-free version of My...

Detailed explanation of Docker Secret management and use

1. What is Docker Secret 1. Scenario display We k...

Linux super detailed gcc upgrade process

Table of contents Preface 1. Current gcc version ...

Several methods to execute sql files under mysql command line

Table of contents The first method: When the MySQ...

JavaScript to make the picture move with the mouse

This article shares the specific code of JavaScri...

Implementation of TCPWrappers access control in Centos

1. TCP Wrappers Overview TCP Wrappers "wraps...

MySQL 8.0.24 installation and configuration method graphic tutorial

This article shares the installation tutorial of ...

Steps to install RocketMQ instance on Linux

1. Install JDK 1.1 Check whether the current virt...

Steps to deploy ingress-nginx on k8s

Table of contents Preface 1. Deployment and Confi...

MySQL database must know sql statements (enhanced version)

This is an enhanced version. The questions and SQ...

Sample code for installing Jenkins using Docker

Two problems that are easy to encounter when inst...

HTML scroll bar textarea attribute setting

1. Overflow content overflow settings (set whether...

Details of 7 kinds of component communication in Vue3

Table of contents 1. Vue3 component communication...