mysql与oracle链接超时_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 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>


版权声明:本文为weixin_42107374原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。