其他
技术分享 | 客户端连接 MySQL 失败故障排除
作者:姚远
专注于 Oracle、MySQL 数据库多年,Oracle 10G 和 12C OCM,MySQL 5.6,5.7,8.0 OCP。现在鼎甲科技任技术顾问,为同事和客户提供数据库培训和技术支持服务。
在 MySQL 的日常运维中,客户端连接 MySQL 失败的现象也很常见。对于这种情况,分下面的三类进行排查。
mysqladmin ping
或
ps -ef | grep mysqld
telnet localhost 3306
第一种情况
mysqld --no-defaults --console --user mysql --skip-networking &
netstat -plunt|grep 3306
第二种情况
mysqld --no-defaults --user mysql --bind-address=127.0.0.1 &
netstat -plunt|grep 3306
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 22767/mysqld
tcp6 0 0 :::33060 :::* LISTEN 22767/mysqld
mysqld --no-defaults --user mysql --bind-address='192.168.17.40' &
netstat -plunt|grep 3306
tcp 0 0 192.168.17.40:3306 0.0.0.0:* LISTEN 23053/mysqld
tcp6 0 0 :::33060 :::* LISTEN 23053/mysqld
mysqld --no-defaults --user mysql &
netstat -plunt|grep 3306
tcp6 0 0 :::33060 :::* LISTEN 23582/mysqld
tcp6 0 0 :::3306 :::* LISTEN 23582/mysqld
mysql> set global log_error_verbosity=3;
Query OK, 0 rows affected (0.00 sec)
当密码错误
mysql -uroot -perrorpassword
mysql: [Warning] Using a password on the command line interface can be insecure.
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
2020-11-03T07:59:40.720835Z 7 [Note] [MY-010926] [Server] Access denied for user 'root'@'localhost' (using password: YES)
账户错误
ERROR 1130 (HY000): Host '192.168.17.149' is not allowed to connect to this MySQL server
MySQL 中的一个账户是由 user 和 host 两个部分组成,在 MySQL 中有个 mysql 数据库,里面有个 user 表,表中 Host 和 User 为两个主键列(primary key),唯一表示一个用户。像这种情况通常是 host 字段部分是 localhost,把它改成通配符 "%" 即可。
技术分享 | 使用 Python 解析并“篡改”MySQL 的 Binlog
社区近期动态