bin>mysqld --initialize-insecure 初始化直接建立data目录
bin>mysqld install wm
>net start wm
>net stop wm
>services.msc 打开服务面板
[mysqld]
设置时区为东八区,此项设置后,在连接MySQL的时候可以不用每次都手动设置时区
default-time-zone = '+8:00'
允许执行load data infile ''
local-infile=1
允许select * from xx into outfile ''
secure_file_priv=''
设置3306端口
port=3306
允许最大连接数
max_connections=200
允许连接失败的次数。这是为了防止有人从该主机试图攻击数据库系统
max_connect_errors=10
服务端使用的字符集默认为UTF8
character-set-server=utf8
创建新表时将使用的默认存储引擎
default-storage-engine=INNODB
默认使用mysql_native_password caching_sha2_password”插件认证
default_authentication_plugin=mysql_native_password
解决导入脚本时funtion报错
log_bin_trust_function_creators=1
[mysql]
设置mysql客户端默认字符集
default-character-set=utf8
允许执行load data local infile ''
local-infile=1
[client]
设置mysql客户端连接服务端时默认使用的端口 mysql\bin>mysql 直接登录
mysql>set password = ''; 取消密码
mysql -hlocalhost -uroot -P3306
port=3306
user=root
password=admin
default-character-set=utf8