美文网首页
MyQL 安装记录

MyQL 安装记录

作者: 走码人 | 来源:发表于2019-06-03 18:09 被阅读0次

操作系统环境

windows 10

MyQL 版本

8.0.16

操作步骤

1、下载

直接去官方网站下载压缩包即可

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

下载对应操作系统的版本
解压文件到指定的目录

2、初始化

系统管理员身份运行命令行工具CMD

你的路径/mysql/bin

进入mysql\bin目录,运行初始化命令

mysqld --initialize --user=root --console

注意在初始化的过程中会产生一个临时密码

D:\mysql\mysql-8.0.16-winx64\bin>mysqld --initialize --user=root --console
2019-06-03T09:41:19.439548Z 0 [System] [MY-013169] [Server] D:\mysql\mysql-8.0.16-winx64\bin\mysqld.exe (mysqld 8.0.16) initializing of server in progress as process 13200
2019-06-03T09:41:49.416995Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: )j?t,Z%f!7+<
2019-06-03T09:42:00.999372Z 0 [System] [MY-013170] [Server] D:\mysql\mysql-8.0.16-winx64\bin\mysqld.exe (mysqld 8.0.16) initializing of server has completed

3、 修改密码

用上一步生成的临时密码,登录mysql

D:\mysql\mysql-8.0.16-winx64\bin>mysql -u root -p
Enter password: ************
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 8.0.16

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

执行修改密码的命令

 alter user 'root'@'localhost'IDENTIFIED BY '你的新密码';

4、my.ini配置

默认没有此配置文件,自行在mysql的根目录创建即可,例如:D:\mysql\mysql-8.0.16-winx64\my.ini

[mysqld]
# 设置3306端口
port=3306
# 设置mysql的安装目录
basedir=D:\mysql\mysql-8.0.16-winx64
# 设置mysql数据库的数据的存放目录
datadir=D:\mysql\mysql-8.0.16-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

#时区设置
default-time_zone = '+8:00'

[mysql]
# 设置mysql客户端默认字符集
default-character-set=utf8mb4
[client]
# 设置mysql客户端连接服务端时默认使用的端口
port=3306
default-character-set=utf8mb4

常见异常

Q1:Public Key Retrieval is not allowed

com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Public Key Retrieval is not allowed

Q1:解决方案

DBeaver中直接设置 allowPublicKeyRetrieval=true


链接异常01.png

Q2:时区异常

The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than 

Q2:解决方案

show variables like '%time_zone%';
set global time_zone='+8:00';

Q3:Host is not allowed to connect to this MYSQL server:

链接被拒绝

Q3:解决方案

update user set host = '%'  where user ='root';  

本人很懒,记录避免下次再次搜索

相关文章

  • MyQL 安装记录

    操作系统环境 windows 10 MyQL 版本 8.0.16 操作步骤 1、下载 直接去官方网站下载压缩包即可...

  • mysql入门

    一.myql的源码编译安装 没有存放的目录创建/application/mysql-5.6.40/tmp目录 再次...

  • mysql简单安装

    首先从官网下载myql的源码包安装,确认自己的机器上有mysql这个系统用户 然后开始安装安装前可以使用mysql...

  • centos安装myql5.7

    https://blog.csdn.net/wohiusdashi/article/details/8935807...

  • mysql 5.1.x在my.cnf安装innodb插件

    先查看myql是否支持InnoDB引擎(我这是安装成功之后的图片) mysql> SHOW variables l...

  • docker配置mysql主从同步

    首先拉取docker里myql镜像,如果没有安装docker,百度看下,比较简单。 docker pull mys...

  • mac上安装个mysql server

    使用图形化界面安装了myql.安装是成功了,但是启动是失败的。 折腾了几次,放弃了。 这篇文章方式操作,然而没有w...

  • MySQL数据库物理文件架构组成各种工具详解

    MySQL物理文件组成——日志文件——错误日志(Error Log) 错误日志记录了MyQL服务器运行过程中所有较...

  • 1.MySQL架构组成

    1.物理文件组成 1.1日志文件 1.1.1Error log 错误日志记录了 MyQL Server 运行过程中...

  • Myql 笔记

    1.collation 在创建数据库,表的时候除了指定character之外还需要指定collation。char...

网友评论

      本文标题:MyQL 安装记录

      本文链接:https://www.haomeiwen.com/subject/jpkhxctx.html