window mysql 初始化配置

mysql 下载地址

https://dev.mysql.com/downloads/installer/

注: msi安装包的就直接安装

​ zip包的需要解压到特定地方然后配置系统变量的path路径,定位到mysql/bin目录下

配置环境变量

将 mysql 安装路径下的bin目录添加至环境变量,例E:\mysql-5.7.21-winx64\bin

初始化

  • 在mysql 安装路径下新建my.ini文件,添加一下内容:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[mysql]
# 设置mysql客户端默认字符集
default-character-set=utf8

[mysqld]
# 设置3306端口
port = 3306
# 设置mysql的安装目录
basedir=E:\mysql-5.7.23
# 允许最大连接数
max_connections=20
# 服务端使用的字符集默认为8比特编码的latin1字符集
character-set-server=utf8
# 创建新表时将使用的默认存储引擎
default-storage-engine=INNODB
  • 初始化mysql服务
1
2
3
4
5
6
mysqld  --initialize-insecure    # 这种方法初始化后没有设置密码,密码为空。
mysqld --initialize # 这种方法初始化后会随机生成密码。
mysqld -install # 安装mysql服务
net start mysql # 启动服务

net stop mysql # 停止服务。
  • 修改密码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# mysql -u root -p               # 登陆 mysql
Enter password: ****** # 输入密码,若初始化没有,则直接回车
set password for 'root'@'localhost'=password('123456'); # 设置密码
flush privileges;
quit # 退出mysql,重新进入

# 例
C:\WINDOWS\system32>mysql -u root -p
Enter password: ******
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.21 MySQL Community Server (GPL)

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> set password for 'root'@'localhost'=password('123456');
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)

MySQL如何修改密码

MySQL设置密码的三种方法

-------------本文结束感谢您的阅读-------------