原因1. MySQL 服務(wù)宕了
判斷是否屬于這個原因的方法很簡單冀值,執(zhí)行以下命令,查看mysql的運(yùn)行時(shí)長
$ mysql -uroot -p -e "show global status like 'uptime';"
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Uptime? ? ? ? | 68928 |
+---------------+-------+
1 row in set (0.04 sec)
或者查看MySQL的報(bào)錯日志杯道,看看有沒有重啟的信息
$ tail /var/log/mysql/error.log
130101 22:22:30 InnoDB: Initializing buffer pool, size = 256.0M
130101 22:22:30 InnoDB: Completed initialization of buffer pool
130101 22:22:30 InnoDB: highest supported file format is Barracuda.
130101 22:22:30 InnoDB: 1.1.8 started; log sequence number 63444325509
130101 22:22:30 [Note] Server hostname (bind-address): '127.0.0.1'; port: 3306
130101 22:22:30 [Note]? - '127.0.0.1' resolves to '127.0.0.1';
130101 22:22:30 [Note] Server socket created on IP: '127.0.0.1'.
130101 22:22:30 [Note] Event Scheduler: Loaded 0 events
130101 22:22:30 [Note] /usr/sbin/mysqld: ready for connections.
Version: '5.5.28-cll'? socket: '/var/lib/mysql/mysql.sock'? port: 3306? MySQL Community Server (GPL)
如果uptime數(shù)值很大,表明mysql服務(wù)運(yùn)行了很久了责蝠。說明最近服務(wù)沒有重啟過党巾。
如果日志沒有相關(guān)信息萎庭,也表名mysql服務(wù)最近沒有重啟過,可以繼續(xù)檢查下面幾項(xiàng)內(nèi)容齿拂。
2. 連接超時(shí)
如果程序使用的是長連接驳规,則這種情況的可能性會比較大。
即署海,某個長連接很久沒有新的請求發(fā)起吗购,達(dá)到了server端的timeout,被server強(qiáng)行關(guān)閉叹侄。
此后再通過這個connection發(fā)起查詢的時(shí)候巩搏,就會報(bào)錯server has gone away
$ mysql -uroot -p -e "show global variables like '%timeout';"
+----------------------------+----------+
| Variable_name? ? ? ? ? ? ? | Value? ? |
+----------------------------+----------+
| connect_timeout? ? ? ? ? ? | 30? ? ? |
| delayed_insert_timeout? ? | 300? ? ? |
| innodb_lock_wait_timeout? | 50? ? ? |
| innodb_rollback_on_timeout | OFF? ? ? |
| interactive_timeout? ? ? ? | 28800? ? |
| lock_wait_timeout? ? ? ? ? | 31536000 |
| net_read_timeout? ? ? ? ? | 30? ? ? |
| net_write_timeout? ? ? ? ? | 60? ? ? |
| slave_net_timeout? ? ? ? ? | 3600? ? |
| wait_timeout? ? ? ? ? ? ? | 28800? ? |
+----------------------------+----------+
mysql> SET SESSION wait_timeout=5;
## Wait 10 seconds
mysql> SELECT NOW();
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id:? ? 132361
Current database: *** NONE ***
+---------------------+
| NOW()? ? ? ? ? ? ? |
+---------------------+
| 2013-01-02 11:31:15 |
+---------------------+
1 row in set (0.00 sec)
3. 進(jìn)程在server端被主動kill
這種情況和情況2相似,只是發(fā)起者是DBA或者其他job趾代。發(fā)現(xiàn)有長時(shí)間的慢查詢執(zhí)行kill xxx導(dǎo)致。
$ mysql -uroot -p -e "show global status like 'com_kill'"
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Com_kill? ? ? | 0? ? |
+---------------+-------+
4. Your SQL statement was too large.
當(dāng)查詢的結(jié)果集超過 max_allowed_packet 也會出現(xiàn)這樣的報(bào)錯丰辣。定位方法是打出相關(guān)報(bào)錯的語句撒强。
用select * into outfile 的方式導(dǎo)出到文件,查看文件大小是否超過 max_allowed_packet 笙什,如果超過則需要調(diào)整參數(shù)飘哨,或者優(yōu)化語句。
mysql> show global variables like 'max_allowed_packet';
+--------------------+---------+
| Variable_name? ? ? | Value? |
+--------------------+---------+
| max_allowed_packet | 1048576 |
+--------------------+---------+
1 row in set (0.00 sec)
修改參數(shù):
mysql> set global max_allowed_packet=1024*1024*16;
mysql> show global variables like 'max_allowed_packet';
+--------------------+----------+
| Variable_name? ? ? | Value? ? |
+--------------------+----------+
| max_allowed_packet | 16777216 |
+--------------------+----------+
1 row in set (0.00 sec)