Xinu

windows环境下安装mysql服务
[TOC]windows环境下安装mysql服务下载https://dev.mysql.com/get/Downl...
扫描右侧二维码阅读全文
13
2020/01

windows环境下安装mysql服务

[TOC]

windows环境下安装mysql服务

下载

https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.19-winx64.zip

解压缩,进入 bin 目录

安装、启动

管理员权限启动 cmd 或者 windows powershell

# 安装服务
mysqld install
# 启动服务
net start mysql

# Mysql服务无法启动,执行以下语句
mysqld --initialize --console

net start mysql
# 停止服务
net stop mysql

UTOOLS1582014116700.png

修改默认密码

set password for 'root'@'localhost'='123456';
Last modification:February 24th, 2020 at 09:30 pm

Leave a Comment