当前位置:首页 > Mysql教程 > 列表

mysql中使用过程中常见错误解决办法收集

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-13 13:25:19 浏览: 评论:0 

mysql中使用过程中常见错误解决办法收集,大家可参考本文章收藏的错误解决办法.

1、Mysql errono 1005:主外键不是完全一致,请检查如下几点:

a、字段是否存在 

b、类型是否一致(注意unsigned , powerdesign 生成问题)

c、数据库引擎是否一致

d、字符编码是否一致

e、windows平台下注意修改lower_case_table_names = 0,windows本身不区分文件大小写,改为0之后就区分了可能造成找不到引用的表 

2、Mysql errono 121:外键约束名称重复.

3、记录 Mysql WorkBench 中单词缩写意义:

  1. PK: primary key (column is part of a pk)  
  2. NN: not null (column is nullable)  
  3. UQ: unique (column is part of a unique key)  
  4. AI: auto increment (the column is auto incremented when rows are inserted)  --phpfensi.com 
  5. BIN: binary (if dt is a blob or similar, this indicates that is binary data, rather than text)  
  6. UN: unsigned (for integer types, see docs: “10.2. Numeric Types”)  
  7. ZF: zero fill (rather a display related flag, see docs: “10.2. Numeric Types”)  

4、mysql 权限设置

  1. //添加远程主机访问MYSQL root权限 
  2. insert into user(host,user,password) values('%','root',PASSWORD('root')); 
  3. //root 权限授权 
  4. grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option; 
  5. //更新权限设置 
  6. flush privileges; 

5、防火墙设置

  1. //打开端口 
  2. /sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT 
  3. //保存 
  4. /etc/rc.d/init.d/iptables save 
  5. //查看状态 
  6. /etc/init.d/iptables status 

6、开机自动运行(实现类似Windows服务).

  1. /sbin/chkconfig --level 2345 mysqld on 
  2. /sbin/chkconfig --list 
  3. 结果如下: 
  4. mysqld 0:off  1:off  2:on  3:on  4:on  5:on  6:off 

7、linux下安装了mysql,不能从其它机器访问,帐号已经授权从任意主机进行访问.

vi /etc/sysconfig/iptables:在后面添加:-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

service iptables restart

发现还是不行,最终发现记录要添加在:-A RH-Firewall-1-INPUT -p icmp --icmp-type any -j ACCEPT 这一条前面 再次重启 OK

8、忘记mysql密码

  1. Microsoft Windows [版本 5.2.3790] 
  2.  
  3.   (C) 版权所有 1985-2003 Microsoft Corp. 
  4.  
  5.   C:Documents and SettingsAdministrator>cd D:webwww.php100.comMysqlMySQL Se 
  6.  
  7.   rver5.5bin 
  8.  
  9.   C:Documents and SettingsAdministrator>d: 
  10.  
  11.   D:webwww.php100.comMysqlMySQL Server5.5bin>mysql 
  12.  
  13.   Welcome to the MySQL monitor. Commands end with ; or g. 
  14.  
  15.   Your MySQL connection id is 1 
  16.  
  17.   Server version: 5.5.10 MySQL Community Server (GPL) 
  18.  
  19.   Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. 
  20.  
  21.   Oracle is a registered trademark of Oracle Corporation and/or its 
  22.  
  23.   affiliates. Other names may be trademarks of their respective 
  24.  
  25.   owners. 
  26.  
  27.   Type 'help;' or 'h' for help. Type 'c' to clear the current input statement. 
  28.  
  29.   mysql> use mysql; 
  30.  
  31.   Database changed 
  32.  
  33.   mysql> update user set password=password("520"where user="root"
  34.  
  35.   Query OK, 1 row affected (0.00 sec) 
  36.  
  37.   Rows matched: 1 Changed: 1 Warnings: 0 
  38.  
  39.   mysql> flush privileges
  40.  
  41.   Query OK, 0 rows affected (0.00 sec) 
  42.  
  43.   mysql> q 
  44.  
  45.   Bye 
  46.  
  47.   D:webwww.phpfensi.comMysqlMySQL Server5.5bin> 

9、mysql 2003错误解决办法

MySQL 服务器资源紧张,导致无法连接.

解决方法:

1、如果你是虚拟主机用户(购买的空间),则联系空间商检查 MySQL 是否正常启动,并确认 MySQL 的配置信息(是否为 localhost);

2、如果你是独立主机用户(拥有管理主机权限),则按下面步骤检查:

1)检查是否启动了 MySQL 服务.

Windows 主机的话,右键点击我的电脑,单击管理,在服务和应用程序中找到 MySQL 服务,看是否是已启动的状态.

如果出现"ERROR 2003: Can't connect to MySQL server on 'localhost' (10061)", 说明你的MySQL还没有启动.

解决办法:

第一步,删除c:windowns下面的my.ini.

第二步,打开c:mysqlbinwinmysqladmin.exe 输入用户名 和密码.

第三步 在dos下 输入 mysqld-nt -remove 删除服务.

在接着输入 mysqld-nt -install.

第四步 输入mysql 启动成功.

Tags: mysql常见错误 mysql解决办法

分享到: