# Mysql数据库参数优化
## 环境
Linux
Mysql5.7
## 现象
Mysql执行查询语句耗时过长。
## 原因
1. Mysql数据库参数配置没有有效利用内存
2. Mysql数据库参数配置可以进行调整以优化性能
## 修复
修改配置文件/etc/my.cnf
“`
innodb_buffer_pool_size = 10G
key_buffer_size=4G
innodb_sort_buffer_size=8M
read_buffer_size=1M
read_rnd_buffer_size=2M
sort_buffer_size=2M
join_buffer_size=2M
innodb_log_file_size=512M
innodb_log_buffer_size=16M
max_connections = 800
table_open_cache = 8000
max_connect_errors = 10000
max_allowed_packet = 1G
wait_timeout = 86400
max_binlog_cache_size=4M
“`
分类: Mysql

0 条评论

发表回复

Avatar placeholder

您的电子邮箱地址不会被公开。