一.下载MySQL压缩包
MySQL :: Download MySQL Community Server
二.创建几个便于管理的文件夹,用于存放一会要安装的多个MySQL,命名可以为
三.配置my.ini文件
注意,路径上要带有\\ 转译,不然有可能会读取不到,安装报错
解压下载的压缩包到第一个文件夹,在解压出来内容中创建my.ini文件,内容如下
[mysqld]
# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M
# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin
# These are commonly set, remove the # and set as required.
basedir = D:\\tools\mysql\mysql1
datadir = D:\\tools\mysql\mysql1\data
port = 3307
#binlog-do-db=leven #待同步的数据库
# server_id = .....
#忘记密码时使用
#设置协议认证方式(重点啊)
#default_authentication_plugin=mysql_native_password
# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M
# sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
character-set-server = utf8mb4
# performance_schema_max_table_instances = 600
#table_definition_cache = 400
#table_open_cache = 256
[mysql]
default-character-set = utf8mb4
[client]
default-character-set = utf8mb4
四.初始化数据库
以管理员身份启动cmd(在右下角搜索框输入cmd,右键->以管理员身份运行)
.\mysqld --initialize --console
运行结束后会生成data文件夹,并打印出默认密码,这个密码需要保存下来,等会登录时需要用到。
在安装目录的bin目录下,执行命令 mysqld --install [服务名],这里的服务名默认为mysql,因为我们需要安装多个数据库,因此会启动不同的服务,所以要对服务名加以区分,这里可以设置为mysql1,即
.\mysqld --install mysql
安装完后就可以开启服务了,输入命令:
net start mysql1
连接服务,修改默认密码
mysql -P 3307 -u root -p
密码就是刚才初始化完成后,记录的
ALTER user 'root'@'localhost' IDENTIFIED BY '123456';
关于第一个数据库的配置到此就算结束了,接下来开始第二个数据库的配置。
与前面的操作没什么区别,解压下载的压缩包到第二个文件夹(mysql2)下方,同样创建一个my.ini文件,注意修改目录地址和端口号,这里的端口号为了不和前面的冲突,因此设置为3307。
之后的操作还是一样,就是初始化数据库和安装服务,记得安装服务时服务名要设置为mysql2。
都设置启动完成之后通过工具连接,多个可以搭建数据库主备
远程连接报错
authentication plugin caching_sha2_password cannot be loaded
用图形化用户界面连接的 MySQL8.0 时,
报错:Authentication plugin ‘caching_sha2_password’ cannot be loaded
MySQL8.0 之前的版本中加密规则是 mysql_native_password,
而在 MySQL8.0 之后,加密规则是 caching_sha2_password。
1、升级 Navicat 驱动(博主用的是破译版,此方法不大可行)
2、MySQL 用户登录密码加密规则还原成 mysql_native_password
ALTER USER 'shitou'@'%' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER;
ALTER USER 'shitou'@'%' IDENTIFIED WITH mysql_native_password BY 'password';
FLUSH PRIVILEGES;
alter user 'shitou'@'%' identified by '123456';