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

Posted 路飞onepiece

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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中文乱码, 配置解决方法

内容源自:windows下mysql中文乱码, 配置解决方法

 

解决方法:打开mysql安装目录,打开my.ini文件(如果只有my-default.ini文件,先将其改名为my.ini!!!

修改内里配置:

[mysqld]
character-set-server=utf8 
[client]
default-character-set=utf8 
[mysql]
default-character-set=utf8

如图:

修改完成后重启MySQL服务:(右键重新启动)

 

完成:

 

以上是关于Windows下mysql8.0.32安装配置方法图文教程的主要内容,如果未能解决你的问题,请参考以下文章

MySQL8.0.32的安装与配置

MySQL8.0.32的安装与配置(最详细)

MySQL 8.0.32如期而至

MySQL 8.0.32如期而至

MySQL 8.0.32如期而至

windows Sever 2012下Oracle 12c安装配置方法图文教程