mysql設置鏈接超時時間參數:wait_timeout

[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 distributionmysql

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

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

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

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

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

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

mysql> di

相關文章
相關標籤/搜索