当前位置:网站首页>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、重新登录
新密码也能成功登录!
边栏推荐
猜你喜欢
It is six orders of magnitude faster than the quantum chemical method. An adiabatic artificial neural network method based on adiabatic state can accelerate the simulation of dual nitrogen benzene der
SCM polling program framework based on linked list management
OpenHarmony应用开发之如何创建DAYU200预览器
安装trinity、解决报错
Flet tutorial 03 basic introduction to filledbutton (tutorial includes source code) (tutorial includes source code)
上汽大通MAXUS正式发布全新品牌“MIFA”,旗舰产品MIFA 9正式亮相!
Three schemes to improve the efficiency of MySQL deep paging query
When MDK uses precompiler in header file, ifdef is invalid
30: Chapter 3: develop Passport Service: 13: develop [change / improve user information, interface]; (use * * * Bo class to accept parameters, and use parameter verification)
JVM series - stack and heap, method area day1-2
随机推荐
结合案例:Flink框架中的最底层API(ProcessFunction)用法
C#基础补充
. Net using redis
SQL language
基于链表管理的单片机轮询程序框架
C language programming topic reference
In 2022, it will be es2022 soon. Do you only know the new features of ES6?
CVPR 2022 | transfusion: Lidar camera fusion for 3D target detection with transformer
7 月数据库排行榜:MongoDB 和 Oracle 分数下降最多
Five "potential errors" in embedded programming
The only core indicator of high-quality software architecture
js中的变量提升和函数提升
硬件基础知识-二极管基础
Install Trinity and solve error reporting
源码编译安装MySQL
2022g3 boiler water treatment examination question simulation examination question bank and simulation examination
The old-fashioned synchronized lock optimization will make it clear to you at once!
Web知识补充
CTF competition problem solution STM32 reverse introduction
C foundation in-depth learning II