数据库
首页 > 数据库> > 建议收藏备查!MySQL 常见错误代码说明

建议收藏备查!MySQL 常见错误代码说明

作者:互联网

建议收藏备查!MySQL 常见错误代码说明

先给大家看几个实例的错误分析与解决方案。

1.ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/data/mysql/mysql.sock'

2.ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

1)修改 my.cnf 主配置文件,在[mysqld]下添加 skip-grant-tables,重启数据库。最后修改密码命令如下:

mysql> use mysql;
mysql> update user set password=password("123456") where user="root";

再删除刚刚添加的 skip-grant-tables 参数,再重启数据库,使用新密码即可登录。

2)重新授权,命令如下:

mysql> grant all on *.* to 'root'@'mysql-server' identified by '123456';

3.客户端报 Too many connections

set GLOBAL max_connections=10000;

4.Warning: World-writable config file '/etc/my.cnf' is ignored ERROR! MySQL is running but PID file could not be found

chmod 644 /et/my.cnf

5.InnoDB: Error: page 14178 log sequence number 29455369832 InnoDB: is in the future! Current system log sequence number 29455369832

6.从库的 Slave_IO_Running 为 NO

问题分析:主库和从库的 server-id 值一样.
解决方法:修改从库的 server-id 的值,修改为和主库不一样,比主库低。修改完后重启,再同步即可!

7.从库的 Slave_IO_Running 为 NO问题

mysql> stop slave;
mysql> set GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
mysql> start slave;
解决方法二:设置用户权限,设置从库只读权限
set global read_only=true;

8.Error initializing relay log position: I/O error reading the header from the binary log

所以,今天民工哥就把主从同步过程中一些常见的错误代码,它的具体说明给大家整理出来了。

MySQL常见错误代码说明:

130 :文件格式不正确。

标签:修改,错误代码,数据库,MySQL,数据表,备查,失败,mysql
来源: https://blog.51cto.com/15127557/2662981