mysql中使用过程中常见错误解决办法收集
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 中单词缩写意义:
- PK:primarykey(columnispartofapk)
- NN:notnull(columnisnullable)
- UQ:unique(columnispartofauniquekey)
- AI:autoincrement(thecolumnisautoincrementedwhenrowsareinserted)--phpfensi.com
- BIN:binary(ifdtisabloborsimilar,thisindicatesthatisbinarydata,ratherthantext)
- UN:unsigned(forintegertypes,seedocs:“10.2.NumericTypes”)
- ZF:zerofill(ratheradisplayrelatedflag,seedocs:“10.2.NumericTypes”)
4、mysql 权限设置
- //添加远程主机访问MYSQLroot权限
- insertintouser(host,user,password)values('%','root',PASSWORD('root'));
- //root权限授权
- grantallprivilegeson*.*to'root'@'%'identifiedby'root'withgrantoption;
- //更新权限设置
- flushprivileges;
5、防火墙设置
- //打开端口
- /sbin/iptables-IINPUT-ptcp--dport3306-jACCEPT
- //保存
- /etc/rc.d/init.d/iptablessave
- //查看状态
- /etc/init.d/iptablesstatus
6、开机自动运行(实现类似Windows服务).
- /sbin/chkconfig--level2345mysqldon
- /sbin/chkconfig--list
- 结果如下:
- mysqld0:off1:off2:on3:on4:on5:on6: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密码
- MicrosoftWindows[版本5.2.3790]
- (C)版权所有1985-2003MicrosoftCorp.
- C:DocumentsandSettingsAdministrator>cdD:webwww.php100.comMysqlMySQLSe
- rver5.5bin
- C:DocumentsandSettingsAdministrator>d:
- D:webwww.php100.comMysqlMySQLServer5.5bin>mysql
- WelcometotheMySQLmonitor.Commandsendwith;org.
- YourMySQLconnectionidis1
- Serverversion:5.5.10MySQLCommunityServer(GPL)
- Copyright(c)2000,2010,Oracleand/oritsaffiliates.Allrightsreserved.
- OracleisaregisteredtrademarkofOracleCorporationand/orits
- affiliates.Othernamesmaybetrademarksoftheirrespective
- owners.
- Type'help;'or'h'forhelp.Type'c'toclearthecurrentinputstatement.
- mysql>usemysql;
- Databasechanged
- mysql>updateusersetpassword=password("520")whereuser="root";
- QueryOK,1rowaffected(0.00sec)
- Rowsmatched:1Changed:1Warnings:0
- mysql>flushprivileges;
- QueryOK,0rowsaffected(0.00sec)
- mysql>q
- Bye
- D:webwww.phpfensi.comMysqlMySQLServer5.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 启动成功.
热门评论