mysql 8.0.15 of my.ini configuration

my.ini

[mysqld] 
# 3306 port disposed 
Port = 3306 

# customizations mysql installation directory, i.e. extracting archive directory mysql 
the basedir = D: \ installional \ MySQL- 8.0 . 15 - Winx64 

# custom settings data storage directory database mysql 
datadir = D: \ installional \ mysql- 8.0 . 15 - Winx64 \ the Data 

# allow the maximum number of connections 
max_connections = 200 

# allowed number of connection failures, this is to prevent someone from trying to attack the host database system 
max_connect_errors = 10 

# the service uses the default character set is UTF8 
character -set-Server = utf8 

default storage engine that will be used when creating a new table # 
default -storage-engine = INNODB

# Default "mysql_native_password" plug-in authentication 
default_authentication_plugin = mysql_native_password 

[mysql] 
# mysql client to set the default character set 
default -CHARACTER-the SET = utf8 

[Client] 
# default settings using the mysql client when connecting to the server port and the default character set 
port = 3306 
default -CHARACTER-SET = UTF8

 

Guess you like

Origin www.cnblogs.com/dongma/p/11708647.html