[mysql] 2024-09-16 圈点410
摘要:mysql8比较全的配置文档myinf
[mysqld]
port=3306
#设置mysql的安装目录
basedir=E:\mysql8
#设置mysql数据库的数据的存放目录
datadir=E:\mysql8\data
#允许最大连接数
max_connections=500
max_user_connections=64
#允许连接失败的次数。
max_connect_errors=100
#服务端使用的字符集默认为utf8mb4
#character-set-server=utf8
#创建新表时将使用的默认存储引擎
default-storage-engine=InnoDB
#默认使用“mysql_native_password”插件认证
default_authentication_plugin=mysql_native_password
max_allowed_packet=1024M
#设置索引块缓存大小
key_buffer_size=1024M
sort_buffer_size=64M
read_buffer_size=64M
read_rnd_buffer_size=64M
bulk_insert_buffer_size=512M
innodb_buffer_pool_size=4096M
innodb_buffer_pool_chunk_size=1024M
innodb_buffer_pool_instances=4
innodb_sort_buffer_size=64M
myisam_sort_buffer_size=512M
myisam_max_sort_file_size=4096M
join_buffer_size=64M
preload_buffer_size=128M
#net_buffer_length=8M
#关闭binlog
skip-log-bin
#expire_logs_days=1
[mysql]
#设置mysql客户端默认字符集
#default-character-set=utf8
[client]
#设置mysql客户端连接服务端时默认使用的端口
#default-character-set=utf8
上一篇[mysql]mariadb修复索引实例