search
HomeDatabaseMysql Tutorialmysql 5.5 升级到 mysql 5.6_MySQL

目前MySQL数据库软件升级到5.6.26版本,主要有两种方法。一种是停机升级,即在现有环境下先停止数据库,然后升级数据库软件版本和数据库版本;另外一种是采用不停机的主从升级(master--slave)方式来升级,也就是现在从库上升级,然后切换主从库,再升级原主库的版本。根据条件和资源情况,我们采取第一种方式升级数据库

 

一、升级前准备

 

1.升级前系统环境检查

 

查找glibc版本:

# ] rpm -qa | grep glibc

glibc-2.5-65

glibc-devel-2.5-65

compat-glibc-2.3.4-2.26

glibc-headers-2.5.65

compat-glibc-headers-2.3.4-2.26

glibc-common-2.5-65

 

查找服务器支撑最大glibc版本:

# ] strings /lib64/libc.so.6 | grep GLIBC_

GLIBC_2.2.5

GLIBC_2.2.6

GLIBC_2.3

GLIBC_2.3.2

GLIBC_2.3.3

GLIBC_2.3.4

GLIBC_2.4

GLIBC_2.5

 

查找已安装数据库版本:

# ] rpm -qa | grep -i mysql

MySQL-server-advanced-5.5.23-1.rhel5

MySQL-client-advanced-5.5.23-1.rhel5

 

(注意:glibc属于比较重要的而且容易被忽略的一个依赖包,根据操作系统版本的不同,所支持最大的glibc版本也不一样。需要检查好要升级服务器的版本和支持最大glibc版本,方便下载安装包。)

 

2.升级前数据库检查

 

查看是否还有其他进程在使用。

mysql -uroot -h127.0.0.1 -P3306 -e 'show processlist;'

 

3.下载安装包

 

MySQL新版本rpm文件:

MySQL-client-5.6.26-1.linux_glibc2.5.x86_64.rpm

MySQL-devel-5.6.26-1.linux_glibc2.5.x86_64.rpm

MySQL-server-5.6.26-1.linux_glibc2.5.x86_64.rpm

MySQL-embedded-5.6.26-1.linux_glibc2.5.x86_64.rpm

MySQL-shared-5.6.26-1.linux_glibc2.5.x86_64.rpm

MySQL-shared-compat-5.6.26-1.linux_glibc2.5.x86_64.rpm

MySQL-test-5.6.26-1.linux_glibc2.5.x86_64.rpm

 

4.上传服务器

 

把新版本文件上传至需要升级的服务器。

 

5.使用主机root权限

 

6.打开告警日志、操作日志

 

6.1告警日志

 

通过每个实例的配置文件my.cnf查找告警日志位置。后台打开,并监控。

 

查找告警日志目录:

#] cat /home/mysql/my_cnf/my_3306.cnf | grep "log-error"

后台告警日志:

tail -f /home/mysql/logs/err-log/mysql-err.log

 

6.2操作日志

 

在操作界面打开SecureCRT软件的“会话日志”功能,保存所有操作记录。

 

7备份系统表

 

主要备份数据库系统库:

mysql

performance_schema

information_schema

 

mysqldump备份命令如下:

mysqldump -u root -h127.0.0.1 -P3306 --databases mysql performance_schema information_schema > /home/mysql/20150818.sql

 

二、数据库升级

 

1.停止应用

 

2.停止数据库

mysqladmin --defaults -file=/home/mysql/my_cnf/my_3306.cnf -uroot shutdown

 

3.卸载旧版本数据库

 

本地升级,暂不支持直接升级方案,即直接在原有旧版本基础上更新新版本,需要先卸载旧版本,再安装新版本,通过此方法升级MySQL数据库版本。

 

卸载:

rpm -e MySQL-server-advanced-5.5.23-1.rhel5

rpm -e MySQL-client-advanced-5.5.23-1.rhel5

 

4.升级新版本

 

使用root权限执行下列操作:

rpm -ivh MySQL-client-5.6.26-1.linux_glibc2.5.x86_64.rpm

rpm -ivh MySQL-devel-5.6.26-1.linux_glibc2.5.x86_64.rpm

rpm -ivh MySQL-server-5.6.26-1.linux_glibc2.5.x86_64.rpm

rpm -ivh MySQL-shared-5.6.26-1.linux_glibc2.5.x86_64.rpm

rpm -ivh MySQL-shared-compat-5.6.26-1.linux_glibc2.5.x86_64.rpm

 

5.启动数据库

nohup mysqld_safe --defaults-file=/home/mysql/my_cnf/my_3306.cnf &

 

6.升级数据库

 

从低版本5.5.23升级到高版本5.6.26时,由于版本不同,系统数据库的表结构也会不一样,所以在安装新版本结束后启动数据库时,通过后台启动日志,会监控到系统数据库的一些表结构出现问题,可以通过更新表结构语句来解决。

mysql_upgrade --protocol=tcp -P3306

 

按照上述语句,对每个有问题的实例逐一执行。

 

7.重启数据库,测试数据库能够正常启动

 

由于执行升级数据库命令mysql_upgrade,所以需要重启数据库,查看后台日志,确保能够正常启动。

 

停止数据库

mysqladmin --defaults -file=/home/mysql/my_cnf/my_3306.cnf -uroot shutdown

 

启动数据库

nohup mysqld_safe --defaults-file=/home/mysql/my_cnf/my_3306.cnf &

 

8.测试远程连接

 

最后一步需要测试远程连接操作:

mysql -h “hostname” -P 3306 -u”username” -p'password' -e 'show processlist;'

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment