美文网首页
MySQL8 Windows版安装

MySQL8 Windows版安装

作者: 第二沦陷区 | 来源:发表于2022-06-08 21:01 被阅读0次

1.下载MySQL8社区版
MySQL :: Download MySQL Community Server

2.解压zip安装包到指定位置

3.初始化数据库
mysqld --initialize --user=mysql --console

4.安装window服务
mysqld install MySQL --defaults-file="D:\MySQL\mysql-8.0.28-winx64\my.ini"

5.修改root用户密码
alter user 'root'@'localhost' identified by '123456';

6.创建用户
create user 'zhangsan'@'%' identified by '123456';

7.授权
// mysql8 需要分成两步,先创建用户,再授权
grant all privileges on testdb.* to zhangsan@'%' with grant option;
grant all privileges on testdb.* to zhangsan@'%' identified by '123456'; // 以前有这种写法,现在写报错

8.my.ini文件
[mysqld]

设置3307端口

port=3307

设置mysql的安装目录

basedir=C:\Java\mysql-5.7.37

设置mysql数据库的数据的存放目录,在安装mysql-5.7.30-winx64.zip版本的时候,此配置不可添加,否则mysql将无法启动。

datadir=C:\Java\mysql-5.7.37\data

允许最大连接数

max_connections=200

允许连接失败的次数。这是为了防止有人从该主机试图攻击数据库系统

max_connect_errors=10

服务端使用的字符集默认为UTF8

character-set-server=utf8

创建新表时将使用的默认存储引擎

default-storage-engine=INNODB

默认使用“mysql_native_password”插件认证

default_authentication_plugin=mysql_native_password

关闭ssl

skip_ssl

配置时区

default-time_zone='+8:00'
[mysql]

设置mysql客户端默认字符集

default-character-set=utf8
[client]

设置mysql客户端连接服务端时默认使用的端口

port=3307
default-character-set=utf8

相关文章

网友评论

      本文标题:MySQL8 Windows版安装

      本文链接:https://www.haomeiwen.com/subject/cvxqprtx.html