mysql安装配置教程8.035
时间: 2023-12-12 18:35:51 浏览: 123
mysql 8.0 安装配置方法教程
以下是MySQL 8.0.35的安装配置教程:
1.下载MySQL Installer for Windows,选择对应的版本,这里我选择的是Windows (x86, 32-bit), MSI Installer。
2.运行MySQL Installer,选择“Developer Default”安装类型,点击“Next”。
3.在“Product Configuration”页面,选择“Server Only”,点击“Next”。
4.在“Check Requirements”页面,如果有警告或错误,请根据提示解决。如果没有问题,点击“Next”。
5.在“Installation”页面,点击“Execute”开始安装。
6.在“Configuration”页面,选择“Standalone MySQL Server / Classic MySQL Replication”,点击“Next”。
7.在“Type and Networking”页面,选择“Config Type”为“Development Computer”,点击“Next”。
8.在“Authentication Method”页面,选择“Use Legacy Authentication Method (Retain MySQL 5.x Compatibility)”,点击“Next”。
9.在“Accounts and Roles”页面,设置root账户密码,点击“Next”。
10.在“Windows Service”页面,选择“Standard System Account”,点击“Next”。
11.在“Plugins and Extensions”页面,不需要修改任何设置,直接点击“Next”。
12.在“Apply Configuration”页面,点击“Execute”应用配置。
13.等待配置完成后,点击“Finish”退出安装程序。
14.打开环境变量设置,将MySQL Server 8.0\bin的路径添加到系统环境变量Path中。
15.打开命令提示符,输入mysql -u root -p,回车后输入密码,如果出现“Welcome to the MySQL monitor”的提示,则表示安装配置成功。
阅读全文