0


Windows下mysql8.0.32安装配置方法图文教程

Windows下mysql8.0.31安装配置方法图文教程

1、下载可以到官网的地址下载即可
https://dev.mysql.com/downloads/file/?id=516465
2、解压缩并重命名mysql-8.0.32-winx64为mysql
在这里插入图片描述
3、创建my.ini配置文件,创建data文件夹。
请添加图片描述
4、打开记事本另存为my.ini并且使用ANSI编码
文件扩展名一定要勾选上
在这里插入图片描述

在这里插入图片描述
5、配置my.ini

[client]# 不推荐使用默认端口 3306
port=3308
default-character-set=utf8mb4
[mysql]
default-character-set=utf8mb4
[mysqld]# 不推荐使用默认端口 3306
port=3308
# 绝对路径依据实际情况修改
basedir="E:\mysql\"
datadir="E:\mysql\data\"# General and Slow logging.
log-output=FILE
general-log=0
general_log_file="mysql-8.0-general.log"
slow-query-log=1
slow_query_log_file="mysql-8.0-slow.log"
long_query_time=10
# Error Logging.
log-error="mysql-8.0.err"# default_authentication_plugin=caching_sha2_password
default_authentication_plugin=mysql_native_password
default-storage-engine=INNODB
character-set-server=utf8mb4
max_connections=600
max_connect_errors=100
transaction_isolation=READ-COMMITTED
max_allowed_packet=64M
default-time-zone='+8:00'
log_timestamps=system
lower_case_table_names=1
table_open_cache=2000
tmp_table_size=512M
key_buffer_size=512M
innodb_flush_log_at_trx_commit=1
innodb_log_buffer_size=16M
innodb_buffer_pool_size=4G
innodb_log_file_size=1G
innodb_autoextend_increment=64
innodb_buffer_pool_instances=8
innodb_open_files=300
innodb_file_per_table=1

https://learn.microsoft.com/zh-cn/cpp/windows/latest-supported-vc-redist?view=msvc-170
在这里插入图片描述
务必一定要重启服务器
6、配置环境变量
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

然后找到Path 打开
在这里插入图片描述
在这里插入图片描述

7、配置mysql
在这里插入图片描述
在这里插入图片描述
初始化数据库,执行命令mysqld --initialize --console,记住随机生成的密码
注册Windows服务,执行命令
成功则提示Service successfully installed.
mysqld.exe --install MySQL8.0 --defaults-file=“E:\mysql-8.0.26-winx64\my.ini”

启动和停止MySQL服务
在这里插入图片描述

mysql –uroot –p初始化临时密码
root新密码设置为newpwd654321
ALTER USER ‘root’@‘localhost’ IDENTIFIED BY ‘newpwd654321’;
flush privileges;
操作系统防火墙中添加数据库端口(本例中是3306)允许访问策略

创建seeyon账号设置密码为oapwd654321,允许协同服务器10.3.4.239远程访问数据库
create user ‘seeyon’@‘10.3.4.239’ identified by ‘oapwd654321’;
flush privileges;
grant all privileges on . to ‘seeyon’@‘10.3.4.239’;
flush privileges;

如果允许所有服务器通过seeyon账号远程访问数据库,则执行
create user ‘seeyon’@‘%’ identified by ‘oapwd654321’;
flush privileges;
grant all privileges on . to ‘seeyon’@‘%’;
flush privileges;

标签: windows mysql 数据库

本文转载自: https://blog.csdn.net/qq_27745471/article/details/127283979
版权归原作者 路飞onepiece 所有, 如有侵权,请联系我们删除。

“Windows下mysql8.0.32安装配置方法图文教程”的评论:

还没有评论