Common errors and solutions for connecting Navicat to virtual machine MySQL

Common errors and solutions for connecting Navicat to virtual machine MySQL

Question 1

solve

Start the service: service mysqld start;

/sbin/iptables -I INPUT -p tcp --dport 8011 -j ACCEPT #Open port 8011 /etc/rc.d/init.d/iptables save #Save configuration /etc/rc.d/init.d/iptables restart #Restart service #Check if the port is open /etc/init.d/iptables status

Question 2

solve

Mysql -u root -proot (root is the password)
mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'yourpassword' WITH GRANT OPTION;

Refresh permissions: FLUSH PRIVILEGES

Question 3

After the MySQL service is set up, the default root role cannot connect remotely. Enable remote login for the root user in the user table under the MySQL database on the machine where MySQL is installed.

This is the end of this article about common errors and solutions when Navicat connects to virtual machine mysql. For more information about errors when Navicat connects to virtual machine mysql, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • After installing Navicat in MySQL, 2059 appears, Authentication plugin and local link virtual machine docker, remote link server
  • How to connect navicat to mysql in Ubuntu virtual machine

<<:  Instructions for using the meta viewport tag (mobile browsing zoom control)

>>:  Detailed steps for installing Tomcat, MySQL and Redis with Docker

Recommend

Analysis of two implementation methods for adding static routing in Linux

Command to add a route: 1.Route add route add -ne...

Example method of deploying react project on nginx

Test project: react-demo Clone your react-demo pr...

How to install ZSH terminal in CentOS 7.x

1. Install basic components First, execute the yu...

CentOS 8 custom directory installation nginx (tutorial details)

1. Install tools and libraries # PCRE is a Perl l...

Detailed tutorial on building an ETCD cluster for Docker microservices

Table of contents Features of etcd There are thre...

How to upgrade MySQL 5.6 to 5.7 under Windows

Written in front There are two ways to upgrade My...

How to migrate the data directory in Docker

Table of contents View Disk Usage Disk Cleanup (D...

mysql-5.7.28 installation tutorial in Linux

1. Download the Linux version from the official w...

Full process record of Nginx reverse proxy configuration

1. Preparation Install Tomcat on Linux system, us...

Windows Server 2008 Tutorial on Monitoring Server Performance

Next, we will learn how to monitor server perform...

Solve the error of installing VMware Tools on Ubuntu 18.04

1. According to the online tutorial, the installa...

A brief summary of my experience in writing HTML pages

It has been three or four months since I joined Wo...

MySQL database aggregate query and union query operations

Table of contents 1. Insert the queried results 2...

CSS container background 10 color gradient Demo (linear-gradient())

grammar background: linear-gradient(direction,col...

Solve the problem that PhpStorm fails to connect to VirtualBox

Problem description: When phpstorm's SFTP hos...