MySQL8.0.13安装

下载

官方:https://dev.mysql.com/downloads/mysql/

 

再贴一个安装文件下载网址:https://dev.mysql.com/downloads/mirrors/

解压

解压之后没有my.ini文件(我的端口设置的3308),截图中是我增加的

[client]
port = 3308
default-character-set = utf8

[mysqld]
port = 3308
character_set_server = utf8

basedir=D:\MySQL\mysql-8.0.13-winx64
datadir=D:\MySQL\mysql-8.0.13-winx64\data

group_concat_max_len=20000


[WinMySQLAdmin]
D:\MySQL\mysql-8.0.13-winx64\bin\mysqld.exe

管理员命令行

在MySQL安装目录的 bin 目录下执行命令:

mysqld --initialize --console

新系统的话会遇到类似这种问题:

下载安装即可:https://www.microsoft.com/en-us/download/details.aspx?id=53587

正常情况下会得到如下结果

D:\MySQL\mysql-8.0.13-winx64\bin>mysqld --initialize --console
2018-10-24T05:32:45.732454Z 0 [System] [MY-013169] [Server] D:\MySQL\mysql-8.0.13-winx64\bin\mysqld.exe (mysqld 8.0.13) initializing of server in progress as process 43080
2018-10-24T05:32:45.870611Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
2018-10-24T05:33:14.879343Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: MMQP.YfCy5XY
2018-10-24T05:33:37.812581Z 0 [System] [MY-013170] [Server] D:\MySQL\mysql-8.0.13-winx64\bin\mysqld.exe (mysqld 8.0.13) initializing of server has completed

D:\MySQL\mysql-8.0.13-winx64\bin>

看到有个警告,查了一下mysql建议使用utf8mb4

修改my.ini文件

[client]
port = 3308
default-character-set = UTF8MB4 

[mysqld]
port = 3308
character-set-server = UTF8MB4 

basedir=D:\MySQL\mysql-8.0.13-winx64
datadir=D:\MySQL\mysql-8.0.13-winx64\data

group_concat_max_len=20000


[WinMySQLAdmin]
D:\MySQL\mysql-8.0.13-winx64\bin\mysqld.exe

警告没有了

D:\MySQL\mysql-8.0.13-winx64\bin>mysqld --initialize --console
2018-10-24T06:06:51.100372Z 0 [System] [MY-013169] [Server] D:\MySQL\mysql-8.0.13-winx64\bin\mysqld.exe (mysqld 8.0.13) initializing of server in progress as process 47804
2018-10-24T06:07:18.372699Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: nj>uUJkpH4/I
2018-10-24T06:07:36.024435Z 0 [System] [MY-013170] [Server] D:\MySQL\mysql-8.0.13-winx64\bin\mysqld.exe (mysqld 8.0.13) initializing of server has completed

D:\MySQL\mysql-8.0.13-winx64\bin>

上面打印了默认密码:nj>uUJkpH4/I

安装服务

mysqld --install MySQL8.0

因为这是电脑上第二个mysql 所以服务名改成了 MySQL8.0

启动服务

net start MySQL8.0

修改初始密码

登录mysql之后执行

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456'; 

评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值