Common failures and reasons for mysql connection failure

Common failures and reasons for mysql connection failure

=====================================================================================================
Fault phenomenon: Unable to connect to mysql
Error message: ERROR 2003 (HY000): Can't connect to MySQL server on 'hostxxxxx' (10061)
Cause: The mysqld database service is not started.
Check: Check in Windows Task Manager, or ps -aux | grep mysql in Unix/Linux. Verify that the service is started.
Processing: Start the mysqld service
=====================================================================================================

==========================================================================
Fault phenomenon: Unable to connect to mysql
Error message: ERROR 1130: Host xx.xx.xx.xx is not allowed to connect to this MySQL server
Reason: The MySQL server does not grant this client permission to connect remotely.
Check: Check whether the host corresponding to the user table in the MySQL database contains the IP address of the client machine (% means no restriction on IP addresses and remote connections are allowed).
Solution: Modify the user table under the mysql database: update user set host = '%' where user = 'XXX'; flush privileges;
====================================================================================

Your user does not use the root account, or your root account does not have login permissions. You need to use
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
Authorization

=====================================================================================================
Fault phenomenon: Unable to connect to mysql
Error message: ERROR 2003 (HY000): Can't connect to MySQL server on 'hostxxxxx' (10061)
Cause: The mysqld client and server ports are inconsistent.
Check: Set the service port in my.ini. This is a common problem, especially when the client port is inconsistent with the remote server port. Solution: Start the mysqld service
=====================================================================================================

Fault phenomenon: Unable to connect to mysql

===================================================================================
Error message: ERROR 2003 (HY000): Can't connect to MySQL server on 'hostxxxxx' (10061)
Cause: The mysqld database service is not started.
Check: Check in Windows Task Manager, or ps -aux | grep mysql in Unix/Linux. Verify that the service is started.
Processing: Start the mysqld service
===================================================================================
Error message: ERROR 1130: Host xx.xx.xx.xx is not allowed to connect to this MySQL server
Reason: The MySQL server does not grant this client permission to connect remotely.
Check: Check whether the host corresponding to the user table in the MySQL database contains the IP address of the client machine (% means no restriction on IP addresses and remote connections are allowed).
Solution: Modify the user table under the mysql database: update user set host = '%' where user = 'XXX'; flush privileges;
===================================================================================
Error message: ERROR 1045 (28000): Access denied for user 'usera'@'localhost' (using password: YES)
Reason: The user account has not been created. Check: After logging in as the administrator ROOT, run show grants for 'usera'@'localhost'; or select user from mysql.user; to confirm whether the user account exists.
Process: Create a user account.
===================================================================================
Error message: ERROR 2003 (HY000): Can't connect to MySQL server on 'hostxxxxx' (10061)
Cause: The mysqld client and server ports are inconsistent.
Check: Set the service port in my.ini. This is a common problem, especially when the client port is inconsistent with the remote server port. Solution: Start the mysqld service
===================================================================================
Error message: ERROR 2002 (HY000): Can't connect to local MySQL server server through socket '/var/lib/mysql/mysql.sock'(111)

Cause: mysqld's mysql.sock is not in the corresponding location.

deal with:

1. First check /etc/rc.d/init.d/mysql status to see if it is started

2. Change permissions chown -R mysql:msyql /var/lib/mysql

3. Modify /etc/my.cnf (Note: stop the database first)

    [mysqld]
    datadir=/usr/local/mysql/data
    socket=/var/lib/mysql/mysql.sock
    [mysql.server]
    user=mysql
    basedir=/usr/local/mysql
    [client]
    socker=/var/lib/mysql/mysql.sock

4. Start the database
===================================================================================

===================================================================================

Common inspection steps.

1. PING hostname or PING 189.xx.xx.xx to confirm that there is no problem with the server IP layer communication. If the PING command succeeds, continue with (2). If the PING command fails, seek help from a network expert.

2. TELNET hostname 3306 confirms that there is no problem with the TCP layer communication with the server. (Your port number may not be 3306). If it works, continue. If it doesn't, check whether mysqld is already running and whether the firewall blocks the port.

3. Check user permissions, show grants ...

You may also be interested in:
  • How to check mysql locks through mysql show processlist command
  • mysql show processlist displays the mysql query process
  • Summary of online MYSQL synchronization error troubleshooting methods (must read)
  • A solution to the MYSQL master-slave out-of-sync problem
  • A MySQL slow query caused a failure
  • Super deployment tutorial of MHA high availability failover solution under MySQL
  • Overview, installation, troubleshooting, tips, and tools of MySQL replication (shared by Huo Ding)
  • Methods for detecting MySQL table failures
  • MySQL SHOW PROCESSLIST assists in the entire process of troubleshooting

<<:  JavaScript design pattern learning proxy pattern

>>:  How to use crontab to add scheduled tasks in Linux

Recommend

A brief discussion on the implementation of fuzzy query using wildcards in MySQL

In the MySQL database, when we need fuzzy query, ...

MYSQL 5.6 Deployment and monitoring of slave replication

MYSQL 5.6 Deployment and monitoring of slave repl...

Vue batch update dom implementation steps

Table of contents Scene Introduction Deep respons...

Analysis of the principles and usage of Docker container data volumes

What is a container data volume If the data is in...

Solution to the problem of invalid line-height setting in CSS

About the invalid line-height setting in CSS Let&...

How to use Vue's idea to encapsulate a Storage

Table of contents background Function Purpose Ide...

A brief understanding of MySQL SELECT execution order

The complete syntax of the SELECT statement is: (...

How to implement Nginx configuration detection service status

1. Check whether the check status module is insta...

Discussion on the problem of iframe node initialization

Today I suddenly thought of reviewing the producti...

How to underline the a tag and change the color before and after clicking

Copy code The code is as follows: a:link { font-s...

Ansible automated operation and maintenance deployment method for Linux system

Ansible is a new automated operation and maintena...

Four ways to modify the default CSS style of element-ui components in Vue

Table of contents Preface 1. Use global unified o...

CocosCreator classic entry project flappybird

Table of contents Development Environment Game en...