MySQL 配置文件参数优化

在mysql 配置文件中加入以下内容

max_connections = 3000         # 最大连接数,默认只有151
read_buffer_size = 8M  
read_rnd_buffer_size=8M      
sort_buffer_size = 8M       
innodb_buffer_pool_size = 6G   # 一般设置为服务器最大内存的一半
innodb_flush_log_at_trx_commit =0
innodb_lru_scan_depth=100  
innodb_io_capacity=1900 
innodb_flush_neighbors=2 
innodb_max_dirty_pages_pct_lwm=1  
innodb_max_dirty_pages_pct=1 

保存后重启 mysql 服务即可生效

posted on 2024-01-18 07:40  五官一体即忢  阅读(6)  评论(0编辑  收藏  举报

导航