【MYSQL数据库升级,从MYSQL5.7到MySQL8】MySQL in-place升级数据库 从5.7 到8.0.36

MySQL in-place升级数据库 从5.7 到8.0.36

  • 升级前检查
  • 升级中
  • 升级后
  • 回滚

升级前检查

mysql版本升级,升级方式有就地升级和逻辑升级2种方法,这次就用就地升级,之前不同版本主备库的升级方式,后续慢慢补充进来

  • In-Place Upgrade(就地升级):就地升级关闭旧的MySQL服务器,用MySQL8的文件夹替换MySQL5.7文件夹,重新启动MySQL,以及升级现有安装中需要升级的任何剩余部分。
  • 逻辑升级有几种:一般常用的是mysqldump导入导出以及搭建逻辑备库,这个方法后续慢慢更新

使用mysqlsh升级前检查

  1. 根据自己的操作系统选择版本进行下载mysql shell,升级前的数据库检查
    下载地址:https://dev.mysql.com/downloads/shell/

  2. linux查看glibc版本
    ldd --version

    [root@D2-TEST bin]# ldd --version
    ldd (GNU libc) 2.28
    Copyright © 2018 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    Written by Roland McGrath and Ulrich Drepper.

  3. 上传到服务器,解压tar包,并添加到环境变量中
    tar -xvf mysql-shell-8.0.36-linux-glibc2.28-x86-64bit.tar.gz

    vi ~/.bash_profile
    PATH= P A T H : PATH: PATH:HOME/bin:/u01/software/mysql-shell-8.0.36-linux-glibc2.28-x86-64bit/bin

  4. 使用工具进行升级前的检查,检查项有可能返回三种 Upgrade_issue,分别是 ERROR、WARNING、NOTICE。
    ERROR:必须整改,否则升级失败。
    WARNING: 可能需要整改,否则升级后有功能异常或不符合预期。
    NOTICE: 升级程序会帮您自动处理好的,仅仅通知您升级程序会干这操作。

    使用语句: mysqlsh -uroot -p12345678 -e “util.checkForServerUpgrade();”

    或者以下语法
    /u01/mysql5.7/mysqlsh/bin/mysqlsh – util check-for-server-upgrade { --user=root --socket=/tmp/mysql.sock } --target-version=8.0.36 --config-path=/etc/my5.cnf

    [root@dD2-TEST bin]# /u01/mysql5.7/mysqlsh/bin/mysqlsh – util check-for-server-upgrade { --user=root --socket=/tmp/mysql.sock } --target-version=8.0.36 --config-path=/etc/my5.cnf
    Please provide the password for ‘root@/tmp%2Fmysql.sock’: ********
    Save password for ‘root@/tmp%2Fmysql.sock’? [Y]es/[N]o/Ne[v]er (default No):
    The MySQL server at /tmp%2Fmysql.sock, version 5.7.16-log - MySQL Community
    Server (GPL), will now be checked for compatibility issues for upgrade to MySQL
    8.0.36…

    1. Usage of old temporal type
      No issues found

    2. MySQL 8.0 syntax check for routine-like objects
      No issues found

    3. Usage of db objects with names conflicting with new reserved keywords
      No issues found

    4. Usage of utf8mb3 charset
      Warning: The following objects use the utf8mb3 character set. It is
      recommended to convert them to use utf8mb4 instead, for improved Unicode
      support.
      More information:
      https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-utf8mb3.html

    eser.durian_task.APP_CLUSID - column’s default character set: utf8
    。。。。。。
    中间省略
    eser.t_vit_qtion.STUS - column’s default character set: utf8

    1. Table names in the mysql schema conflicting with new tables in 8.0
      No issues found

    2. Partitioned tables using engines with non native partitioning
      No issues found

    3. Foreign key constraint names longer than 64 characters
      No issues found

    4. Usage of obsolete MAXDB sql_mode flag
      No issues found

    5. Usage of obsolete sql_mode flags
      Notice: The following DB objects have obsolete options persisted for
      sql_mode, which will be cleared during upgrade to 8.0.
      More information:
      https://dev.mysql.com/doc/refman/8.0/en/mysql-nutshell.html#mysql-nutshell-removals

    global system variable sql_mode - defined using obsolete NO_AUTO_CREATE_USER
    option

    1. ENUM/SET column definitions containing elements longer than 255 characters
      No issues found

    2. Usage of partitioned tables in shared tablespaces
      No issues found

    3. Circular directory references in tablespace data file paths
      No issues found

    4. Usage of removed functions
      No issues found

    5. Usage of removed GROUP BY ASC/DESC syntax
      No issues found

    6. Removed system variables for error logging to the system log configuration
      No issues found

    7. Removed system variables
      No issues found

    8. System variables with new default values
      Warning: Following system variables that are not defined in your
      configuration file will have new default values. Please review if you rely on
      their current values and if so define them before performing upgrade.
      More information:
      https://mysqlserverteam.com/new-defaults-in-mysql-8-0/

    back_log - default value will change
    character_set_server - default value will change from latin1 to utf8mb4
    collation_server - default value will change from latin1_swedish_ci to
    utf8mb4_0900_ai_ci
    event_scheduler - default value will change from OFF to ON
    explicit_defaults_for_timestamp - default value will change from OFF to ON
    innodb_autoinc_lock_mode - default value will change from 1 (consecutive) to
    2 (interleaved)
    innodb_flush_method - default value will change from NULL to fsync (Unix),
    unbuffered (Windows)
    innodb_flush_neighbors - default value will change from 1 (enable) to 0
    (disable)
    innodb_max_dirty_pages_pct - default value will change from 75 (%) 90 (%)
    innodb_max_dirty_pages_pct_lwm - default value will change from_0 (%) to 10
    (%)
    innodb_undo_log_truncate - default value will change from OFF to ON
    innodb_undo_tablespaces - default value will change from 0 to 2
    log_error_verbosity - default value will change from 3 (Notes) to 2 (Warning)
    log_slave_updates - default value will change from OFF to ON
    master_info_repository - default value will change from FILE to TABLE
    max_allowed_packet - default value will change from 4194304 (4MB) to 67108864
    (64MB)
    max_error_count - default value will change from 64 to 1024
    optimizer_trace_max_mem_size - default value will change from 16KB to 1MB
    performance_schema_consumer_events_transactions_current - default value will
    change from OFF to ON
    performance_schema_consumer_events_transactions_history - default value will
    change from OFF to ON
    relay_log_info_repository - default value will change from FILE to TABLE
    slave_rows_search_algorithms - default value will change from ‘INDEX_SCAN,
    TABLE_SCAN’ to ‘INDEX_SCAN, HASH_SCAN’
    table_open_cache - default value will change from 2000 to 4000
    transaction_write_set_extraction - default value will change from OFF to
    XXHASH64

    1. Zero Date, Datetime, and Timestamp values
      No issues found

    2. Schema inconsistencies resulting from file removal or corruption
      No issues found

    3. Tables recognized by InnoDB that belong to a different engine
      No issues found

    4. Spatial data columns created in MySQL 5.6
      No issues found

    5. Issues reported by ‘check table x for upgrade’ command
      No issues found

    6. New default authentication plugin considerations
      Warning: The new default authentication plugin ‘caching_sha2_password’ offers
      more secure password hashing than previously used ‘mysql_native_password’
      (and consequent improved client connection authentication). However, it also
      has compatibility implications that may affect existing MySQL installations.
      If your MySQL installation must serve pre-8.0 clients and you encounter
      compatibility issues after upgrading, the simplest way to address those
      issues is to reconfigure the server to revert to the previous default
      authentication plugin (mysql_native_password). For example, use these lines
      in the server option file:

      [mysqld]
      default_authentication_plugin=mysql_native_password

      However, the setting should be viewed as temporary, not as a long term or
      permanent solution, because it causes new accounts created with the setting
      in effect to forego the improved authentication security.
      If you are using replication please take time to understand how the
      authentication plugin changes may impact you.
      More information:
      https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password-compatibility-issues
      https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password-replication

    7. Columns which cannot have default values
      No issues found

    8. Check for invalid table names and schema names used in 5.7
      No issues found

    9. Check for orphaned routines in 5.7
      No issues found

    10. Check for indexes that are too large to work on higher versions of MySQL
      Server than 5.7
      No issues found

    11. Check for deprecated ‘.

      ’ syntax used in routines.
      No issues found

    12. Check for columns that have foreign keys pointing to tables from a diffrent
      database engine.
      No issues found

    Errors: 0
    Warnings: 404
    Notices: 1

    NOTE: No fatal errors were f

  5. 下载对应glibc版本的MySQL 8.0.36 binaries (mysql-8.0.36-linux-glibc2.28-x86_64.tar.xz)
    下载地址: https://dev.mysql.com/downloads/mysql/

  6. 更改mysql5.7数据库的参数,要不然启动时候需要数据库恢复(前滚&回滚)
    mysql> show variables like ‘%shutdown%’;
    ±------------------------------------±------+
    | Variable_name | Value |
    ±------------------------------------±------+
    | innodb_buffer_pool_dump_at_shutdown | ON |
    | innodb_fast_shutdown | 1 |
    ±------------------------------------±------+
    2 rows in set (0.00 sec)

    mysql> set global innodb_fast_shutdown=0;
    Query OK, 0 rows affected (0.00 sec)

    mysql> show variables like ‘%shutdown%’;
    ±------------------------------------±------+
    | Variable_name | Value |
    ±------------------------------------±------+
    | innodb_buffer_pool_dump_at_shutdown | ON |
    | innodb_fast_shutdown | 0 |
    ±------------------------------------±------+

升级中

1.关闭5.7版本数据库
service mysqld stop

或者
mysqladmin -uroot -p12345678 -S /u01/mysql5.7/mysql5.7.sock shutdown
  1. 备份MySQL5.7整个目录
    mkdir -p /u01/backup
    cp /u01/mysql5.7/* /u01/backup

  2. mysqldump备份整个数据库
    /u01/mysql5.7/bin/mysqldump -uroot -p12345678 -q --single-transaction --events --routines --triggers --set-gtid-purged=OFF --all-databases |gzip > /root/all_db.gz

  3. 解压MySQL 8.0.36 binaries到MYSQL5.7的目录中,并覆盖,启动mysql
    service mysqld start

    或者
    /u01/mysql5.7/bin/mysqld_safe --defaults-file=/etc/my5.cnf &

    以下是mysqld.log的输出,可以看出,数据库启动时候自动升级了数据字典或者后续手动升级也可以

     		2024-01-23T08:33:35.169307Z 0 [Warning] [MY-000081] [Server] option 'server_id': unsigned value 101638420357 adjusted to 4294967295.2024-01-23T08:33:35.169557Z 0 [System] [MY-010116] [Server] /u01/mysql5.7/bin/mysqld (mysqld 8.0.36) starting as process 5043622024-01-23T08:33:35.185326Z 1 [System] [MY-011012] [Server] Starting upgrade of data directory.2024-01-23T08:33:35.185440Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started.2024-01-23T08:33:35.923313Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended.2024-01-23T08:33:37.729442Z 2 [System] [MY-011003] [Server] Finished populating Data Dictionary tables with data.2024-01-23T08:33:38.604014Z 5 [System] [MY-013381] [Server] Server upgrade from '50700' to '80036' started.2024-01-23T08:33:43.481128Z 5 [System] [MY-013381] [Server] Server upgrade from '50700' to '80036' completed.2024-01-23T08:33:44.583318Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed.2024-01-23T08:33:44.583438Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel.2024-01-23T08:33:44.896924Z 0 [Warning] [MY-011810] [Server] Insecure configuration for --pid-file: Location '/u01' in the path is accessible to all OS users. Consider choosing a different directory.2024-01-23T08:33:44.921966Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /tmp/mysqlx.sock2024-01-23T08:33:44.922144Z 0 [System] [MY-010931] [Server] /u01/mysql5.7/bin/mysqld: ready for connections. Version: '8.0.36'  socket: '/u01/mysql5.7/mysql5.7.sock'  port: 3306  MySQL Community Server - GPL.2024-01-23T08:34:11.839745Z 11 [Warning] [MY-013360] [Server] Plugin mysql_native_password reported: ''mysql_native_password' is deprecated and will be removed in a future release. Please use caching_sha2_password instead'
    

升级后

  1. 升级数据字典
  • MySQL 8.0.16 的新的升級方式(参考:https://dev.mysql.com/doc/mysql-installation-excerpt/8.3/en/upgrading-what-is-upgraded.html)

    /u01/mysql5.7/bin/mysqld --upgrade=NONE

    说明:在 mysqld 額外添加了一個新的選項 --upgrade。可選值爲 NONE,AUTO,MINIMAL,FORCE。
    NONE:不尝试升级
    AUTO: 默认选项,MYSQL进行数据字典和服务升级
    MINIMAL:仅升级数据字典
    FORCE:強制升級,类似于 mysql_upgrade –force

  • MySQL 8.0.16 以前的升级方式:
    The mysql_upgrade client is now deprecated. The actions executed by the upgrade client are now done by the server.

mysql_upgrade --uroot -p12345678 --socket=/u01/mysql5.7/mysql5.7.sock --port=3306

  1. 登录数据查看数据字典:
    mysql> select user,host,plugin from user;
    ±-----------------±----------±----------------------+
    | user | host | plugin |
    ±-----------------±----------±----------------------+
    | root | % | mysql_native_password |
    | mysql.infoschema | localhost | caching_sha2_password |
    | mysql.session | localhost | caching_sha2_password |
    | mysql.sys | localhost | mysql_native_password |
    | root | localhost | mysql_native_password |
    ±-----------------±----------±----------------------+
    5 rows in set (0.00 sec)
    mysql> select user,host,plugin from user;
    ±-----------------±----------±----------------------+
    | user | host | plugin |
    ±-----------------±----------±----------------------+
    | root | % | mysql_native_password |
    | mysql.infoschema | localhost | caching_sha2_password |
    | mysql.session | localhost | caching_sha2_password |
    | mysql.sys | localhost | mysql_native_password |
    | root | localhost | mysql_native_password |
    ±-----------------±----------±----------------------+
    5 rows in set (0.00 sec)

  2. 简单数据库操作
    mysql> create table t1 (a int);
    Query OK, 0 rows affected (0.02 sec)

mysql> insert into t1 values(1);
Query OK, 1 row affected (0.01 sec)

回滚

如果要回退的话只需要将新版本的base文件和数据文件移动到其他地方,将之前备份的MySQL 5.7的base路径和数据文件拷贝回原始位置,然后重新启动。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/643849.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

代码随想录训练营第二十九天打卡|491.递增子序列 46.全排列 47.全排列 II

491.递增子序列 上来模仿着之前子集问题的去重逻辑,结果没能通过。原因是因为之前子集II问题去重是先对数组进行排序,然后进行树层去重。而本题要求收集递增子序列,就不能先排序,之前的去重逻辑就不适用了。那针对这个问题&#…

Dubbo_入门

系列文章目录 提示:这里可以添加系列文章的所有文章的目录,目录需要自己手动添加 Dubbo_入门 提示:写完文章后,目录可以自动生成,如何生成可参考右边的帮助文档 文章目录 系列文章目录前言一、什么是分布式系统二、什么…

Android开发--状态栏布局隐藏的方法

1.问题如下,安卓布局很不协调 2.先将ActionBar设置为NoActionBar 先打开styles.xml 3.使用工具类 package com.afison.newfault.utils;import android.annotation.TargetApi; import android.app.Activity; import android.content.Context; import android.graph…

【Elasticsearch篇】详解使用RestClient操作索引库的相关操作

文章目录 🍔什么是Elasticsearch🌺什么是RestClient🎆代码操作⭐初始化RestClient⭐使用RestClient操作索引库⭐使用RestClient删除索引库⭐使用RestClient判断索引库是否存在 🍔什么是Elasticsearch Elasticsearch是一个开源的分…

SpringBoot 统计更多Api接口SQL相关日志信息

统计(查询,更新,批量更新)SQL执行次数及用时并输出log import com.zhangziwa.practisesvr.utils.log.LogContext; import org.apache.ibatis.executor.statement.StatementHandler; import org.apache.ibatis.plugin.Interceptor; import org.apache.ibatis.plugin.Intercepts…

什么是通配监听端口? 什么是通配监听IP?

什么是通配监听端口? 监听端口: 指的是服务器或服务开启的特定TCP或UDP端口号,等待客户端连接或发送数据。TCP/IP协议下每个端口只能由一个服务独占监听,一个服务或应用会指定监听特定的一个或多个端口来接收客户端的连接请求。 例如 Web…

RocketMQ-Windows版本安装

RocketMQ-Windows版本安装 1.环境准备 JDK和maven需要先安装好,我这里使用的JDK1.8版本 Maven 3.8.6版本。需要注意的是,这里配置java时需要指定JAVA_HOME环境变量 RokectMQ才能正常启动。 2.下载RocketMQ 官网下载: https://rocketmq.apache.org/z…

C++读取txt文件中的逐个字符

为了增加读取的灵活性,所以separator和filename都设置为在主函数中获取输入或者在函数中传参的视线方法 举个例子,txt文件如下: household;2;true; 首先声明一个读取数据的文件 void read_data_file(const string& filename,char se…

【计算机组成原理】P2 计算机系统的层次结构

计算机系统的层次结构 现代计算机的解题过程计算机语言发展历程早期20世纪50年代20世纪60年代微程序机器 M 0 M_0 M0​操作系统机器 M 2 M_2 M2​ 现代计算机的解题过程 首先将用户用高级语言编写的源程序与数据一起送入计算机内,再由计算机将其翻译成机器能识别…

Android:registerForActivityResult

在《Android:FragmentActivity》中我们提到过Fragment中的onActivityResult已经废弃了,推荐使用registerForActivityResult去注册一个ActivityResultContract契约,从而启动一个forResult的Activity来达到目的,所以这里就看看这个流程是如何进行的。 场景:MainActivity中嵌…

Matplotlib Mastery: 从基础到高级的数据可视化指南【第30篇—python:数据可视化】

文章目录 Matplotlib: 强大的数据可视化工具1. 基础1.1 安装Matplotlib1.2 创建第一个简单的图表1.3 图表的基本组件:标题、轴标签、图例 2. 常见图表类型2.1 折线图2.2 散点图2.3 条形图2.4 直方图 3. 图表样式与定制3.1 颜色、线型、标记的定制3.2 背景样式与颜色…

CC工具箱使用指南:【属性映射】

一、简介 在规划工作中,经常会遇到这样一种情况,有一组一一对应的值。 比如用地编码和用地名称,用地编码【0101】和用地名称【水田】是对应的。 当你在用地编码字段输入【0101】时,用地名称值就必须为【水田】。 当我们确定用地…

gin路由篇

1. 基本路由 gin 框架中采用的路由库是基于httprouter做的 import ("net/http""github.com/gin-gonic/gin" )func main() {// 1.创建路由r : gin.Default()// 2.绑定路由规则,执行的函数// gin.Context,封装了request和responser.…

Nacos源码下载与运行

早先在linux环境下搭建过nacos环境 即Centos安装部署nacos实战,本次是从官网上下载源码,本地运行看看,记录过程,方便备查。 第一步、Nacos源码下载 推荐到nacos官网下载 Github地址,本次选择最新版,1.4.7…

查看Pytorch的GPU是否可用

查看Pytorch的GPU是否可用 import torch torch.cuda.is_available()返回为True表示 Pytorch 的 GPU 可用,返回为False表示 Pytorch 的 GPU 不可用。 其余命令: # 查看cuda是否可用 torch.cuda.is_available() # 返回当前设备索引 torch.cuda.current_d…

openssl3.2/test/certs - 019 - ca-nonca trust variants: +serverAuth, +anyEKU

文章目录 openssl3.2/test/certs - 019 - ca-nonca trust variants: serverAuth, anyEKU概述笔记 ca-nonca.pem from exp 016openssl3.2/test/certs - 019 - ca-nonca trust variants: serverAuth, anyEKUEND openssl3.2/test/certs - 019 - ca-nonca trust variants: serverAu…

Kubeadm安装单master多node节点K8S集群

kubeadm安装k8s1.25版本集群步骤 环境说明实验环境规划集群搭建规划 初始化安装k8s集群的实验环境安装虚拟机更新yum源和操作系统配置机器主机名配置主机hosts文件,相互之间通过主机名互相访问配置主机之间无密码登录关闭交换分区swap,提升性能修改机器内…

Excel导出警告:文件格式和拓展名不匹配

原因描述: Content-Type 原因:Content-Type,即内容类型,一般是指网页中存在的Content-Type,用于定义网络文件的类型和网页的编码,决定文件接收方将以什么形式、什么编码读取这个文件,这就是经常…

Qt单选按钮

前言 本篇文章介绍Qt的单选按钮,就是QRadioButton QRadioButton是一个选项按钮,可以打开(选中)或关闭(取消选中)。单选按钮通常向用户提供“众多之一”的选择。 在一组单选按钮中,一次只能选中…

【Linux命令】du 和 df 查看磁盘占用情况

du 和 df 算是一对同门师兄弟,du 侧重在文件夹和文件的磁盘占用方面,而 df 则侧重在文件系统级别的磁盘占用方面。这两个命令都非常的基础,也是每位 Linux 工程师都应该掌握的命令。 1、du 命令: du 是 “disk usage” 的缩写&a…