mysql修改wait_timeout_MySQL
程序员文章站
2022-04-30 08:45:55
...
bitsCN.com
bitsCN.com
mysql修改wait_timeout
mysql mysql> show global variables like 'wait_timeout';
其默认值为8小时
mysql的一个connection空闲时间超过8小时,mysql会自动断开该连接。
1.修改配置 vi /etc/my.cnf [mysqld] wait_timeout=10 # /etc/init.d/mysql restart 2.直接用sql命令行修改 mysql> set global wait_timeout=10; mysql> show global variables like 'wait_timeout'; +----------------------------+-------+ | Variable_name | Value | +----------------------------+-------+ | wait_timeout | 10 | +----------------------------+-------+ show variables like '%time%'; timeBetweenEvictionRunsMillis = 20000 #dbcp每2000秒进行一次connection的检 minEvictableIdleTimeMillis = 28700 #每次检验中将超过28700秒处于空闲的connection断开
bitsCN.com
上一篇: 服务器响应速度过慢,求大神指导
下一篇: 使用DBMS_STATS来收集统计信息
推荐阅读
-
在 CentOS 7 中安装 MySQL 8 的教程详解
-
MySQL基本简单操作
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决
-
CentOS7下Mysql5.7安装
-
MySQL存储表情时报错:java.sql.SQLException: Incorrect string value:‘\xF0\x9F\x92\xA9\x0D
-
Oracle与MySQL的分页查询sql语句格式实例讲解
-
MySQL中的视图使用详解
-
php+mysql数据库实现无限分类的方法
-
MySQL之游标的使用方法
-
MySQL:Unsafe statement written to the binary log using statement format since BI