当前位置:网站首页>MySQL8版本免安装步骤教程
MySQL8版本免安装步骤教程
2022-07-04 12:48:00 【芝兰生于深谷】
MySQL8版本免安装步骤教程
1、下载Mysql8免安装包
网址:MySQL :: Download MySQL Community Server
2、解压
3、配置环境变量
4、修改my.ini文件
[mysqld]
# 设置3306端口
port=3306
# 设置mysql的安装目录
basedir=D:\MySql\mysql-8.0.22-winx64
# 设置mysql数据库的数据的存放目录
datadir=D:\MySql\mysql-8.0.22-winx64\Data
# 允许最大连接数
max_connections=200
# 允许连接失败的次数。
max_connect_errors=10
# 服务端使用的字符集默认为utf8mb4
character-set-server=utf8mb4
# 创建新表时将使用的默认存储引擎
default-storage-engine=INNODB
# 默认使用“mysql_native_password”插件认证
#mysql_native_password
default_authentication_plugin=mysql_native_password
[mysql]
# 设置mysql客户端默认字符集
default-character-set=utf8mb4
[client]
# 设置mysql客户端连接服务端时默认使用的端口
port=3306
default-character-set=utf8mb4
5、初始化数据库并安装、登陆数据库
先以管理员身份打开命令提示符(cmd)
1、初始化数据库
生成初始密码,是[email protected]后的字符,我们需要记下来,后面用到。
# 路径一定要在安装文件夹
mysqld --initialize --console
2、安装MySQL服务
# mysqld --install 服务名,此处⽤mysql8作为服务名
mysqld --install mysql8
3、启动服务
# net start 服务名
net start mysql8
4、登录MySQL
使⽤默认分配的密码(即初始密码)进⾏登录
mysql -uroot -p初始密码
5、修改root密码
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password
BY 'xxx'; xxx是你⾃⼰定义的密码。
刷新
flush privileges;
6、重新登录
新密码也能成功登录!
边栏推荐
- Animation and transition effects
- CTF competition problem solution STM32 reverse introduction
- C#基础深入学习一
- Samsung's mass production of 3nm products has attracted the attention of Taiwan media: whether it can improve the input-output rate in the short term is the key to compete with TSMC
- Introduction to XML II
- Database lock table? Don't panic, this article teaches you how to solve it
- 【R语言数据科学】:交叉验证再回首
- Cann operator: using iterators to efficiently realize tensor data cutting and blocking processing
- remount of the / superblock failed: Permission denied
- Redis - how to install redis and configuration (how to quickly install redis on ubuntu18.04 and centos7.6 Linux systems)
猜你喜欢
逆向调试入门-PE结构-资源表07/07
面试拆解:系统上线后Cpu使用率飙升如何排查?
ASP.NET Core入门一
Understanding and difference between viewbinding and databinding
JVM series - stack and heap, method area day1-2
Interviewer: what is the internal implementation of hash data type in redis?
硬件基础知识-二极管基础
Five "potential errors" in embedded programming
Node の MongoDB安装
8 expansion sub packages! Recbole launches 2.0!
随机推荐
Go 语言入门很简单:Go 实现凯撒密码
DGraph: 大规模动态图数据集
C foundation in-depth study I
Introduction to XML II
2022G3锅炉水处理考试题模拟考试题库及模拟考试
7 月数据库排行榜:MongoDB 和 Oracle 分数下降最多
C語言宿舍管理查詢軟件
2022危险化学品经营单位主要负责人练习题及模拟考试
XML入门三
Flet tutorial 03 basic introduction to filledbutton (tutorial includes source code) (tutorial includes source code)
逆向调试入门-PE结构-资源表07/07
C语言集合运算
Personalized online cloud database hybrid optimization system | SIGMOD 2022 selected papers interpretation
Detailed explanation of Fisher information quantity detection countermeasure sample code
Fs4056 800mA charging IC domestic fast charging power IC
Fs7867s is a voltage detection chip used for power supply voltage monitoring of digital system
基于STM32+华为云IOT设计的酒驾监控系统
Interviewer: what is the difference between redis expiration deletion strategy and memory obsolescence strategy?
Understanding and difference between viewbinding and databinding
C语言程序设计