赞
踩
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)
修改my.cnf主配置文件,在[mysqld]下添加 skip-grant-tables
update更新user表authentication_string字段
重新授权
在使用远程连接数据库时偶尔会发生远程连接数据库很慢的问题。
如果 MySQL 主机查询 DNS 很慢或是有很多客户端主机时会导致连接很慢. 由于开发机器是不能够连接外网的,在进行 MySQL 连接时,DNS 解析是不可能完成的, 从而也就明白了为什么连接那么慢了。
修改 my.cnf 主配置文件,在[mysqld]下添加 skip-name-resolve,重启数据库可以解决。注意在以后授权里面不能再使用主机名授权。
Can't open file: 'xxx_forums.MYI'. (errno: 145)
问题分析:
解决方法:
ERROR 1129 (HY000): Host 'xxx.xxx.xxx.xxx' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
问题分析:
解决方法:
Too many connections
问题分析:
解决方法:
- Warning:World-writable config file '/etc/my.cnf' is ignored
- ERROR! MySQL is running but PlD file could not be found
问题分析:
解决方法:
- InnoDB:Error: page 14178 log sequence number 29455369832
- InnoDB: is in the future! Current system log sequence number 29455369832
问题分析:
解决方法:
从库的Slave_lO_Running为NO
- The slave I/O thread stops because master and slave have equal MySQL serverids;
- these ids must be different for replication to work (or the --replicate-same-server-id
- option must be used on slave but this does not always make sense;
- please check the manual before using it).
问题分析:
解决方法:
从库的Slave_lO_Running为NO
问题分析:
解决方法:
mysql> stop slave;
mysqI> set GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
mysql> start slave;
set global read_only=true;
- Error initializing relay log position: I/O error reading the header from
- the binary log
问题分析:
解决方法:
mysqI> CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.xxx',MASTER_LOG_POS=xxx;
可以从不同角度进行优化:
cpu:64位,高主频,高缓存,高并行处理能力
内存:大内存,主频高,尽量不要使用SWAP
硬盘:15000转,RAID5 ,RAID10 ,SSD
网络:标配的千兆网卡,10G网卡,bond0,MySQL服务器尽可能和使用它的web服务器在同一局域网内,尽量避免诸如防火墙策略等不必要的开销
1.优化建表结构
2.建立合适的索引
3.查询时尽量减少逻辑运算
4.减少不当的查询语句,不要查询应用中不需要的列
5.减少事务包大小
6.将多个小的查询适当合并成一个大的查询,减少每次建立/关闭查询的开销
7.将某些过于复杂的查询拆解成多个小查询,和上一条正好相反
8.建立和优化存储过程来代替大量的外部程序交互
网卡bond技术
设置TCP连接数量限制,优化系统打开文件的最大限制
使用64位操作系统,64位系统可以分给单个进程更多内存,计算更快
禁止不必要启动的服务
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。