码迷,mamicode.com
首页 > 数据库 > 详细

mysql设置连接超时时间参数:wait_timeout

时间:2014-12-17 14:34:00      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:ar   io   sp   for   on   bs   cti   ad   as   

[root@ ~]# mysql -h 192.168.0.* -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8174
Server version: 5.1.73 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql> show global variables like ‘wait_timeout‘;
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| wait_timeout | 28800 |
+---------------+-------+
1 row in set (0.00 sec)

mysql> set global wait_timeout=86400;
Query OK, 0 rows affected (0.00 sec)

mysql> show global variables like ‘wait_timeout‘;
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| wait_timeout | 86400 |
+---------------+-------+
1 row in set (0.00 sec)

mysql>

 

mysql设置连接超时时间参数:wait_timeout

标签:ar   io   sp   for   on   bs   cti   ad   as   

原文地址:http://www.cnblogs.com/taosim/p/4169238.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!