文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

mysql5.6怎么升级到mysql5.7

2024-04-02 19:55

关注

mysql5.6怎么升级到mysql5.7,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。

1、停止mysql5.6数据库服务

[root@host2 mysql]# /etc/init.d/mysqld stop
Shutting down MySQL..                                      [  OK  ]
[root@host2 mysql]#


2、进入/usr/local更换软连接指定到mysql5.7

[root@host2 local]# ls
bin  games    lib    libexec  mysql                               mysql-5.7.16-linux-glibc2.5-x86_64  mysql-utilities-1.6.5.tar.gz  share
etc  include  lib64  my.cnf   mysql-5.6.34-linux-glibc2.5-x86_64  mysql-utilities-1.6.5               sbin                          src
[root@host2 local]# unlink mysql


创建新的链接

[root@host2 local]# ln -s mysql-5.7.16-linux-glibc2.5-x86_64 mysql
[root@host2 local]# ll
total 712
drwxr-xr-x.  2 root  root    4096 Jun 28  2011 bin
drwxr-xr-x.  2 root  root    4096 Jun 28  2011 etc
drwxr-xr-x.  2 root  root    4096 Jun 28  2011 games
drwxr-xr-x.  2 root  root    4096 Jun 28  2011 include
drwxr-xr-x.  2 root  root    4096 Jun 28  2011 lib
drwxr-xr-x.  2 root  root    4096 Jun 28  2011 lib64
drwxr-xr-x.  2 root  root    4096 Jun 28  2011 libexec
-rw-r--r--.  1 root  root    2754 Nov  6 15:44 my.cnf
lrwxrwxrwx.  1 root  root      34 Mar  8 15:34 mysql -> mysql-5.7.16-linux-glibc2.5-x86_64
drwxr-xr-x. 12 mysql mysql   4096 Feb 27 18:33 mysql-5.6.34-linux-glibc2.5-x86_64
drwxr-xr-x. 11 root  mysql   4096 Nov 19 00:01 mysql-5.7.16-linux-glibc2.5-x86_64
drwxr-xr-x.  7  7161 31415   4096 Feb 28 02:00 mysql-utilities-1.6.5
-rw-r--r--.  1 root  root  668241 Feb 28 01:59 mysql-utilities-1.6.5.tar.gz
drwxr-xr-x.  2 root  root    4096 Jun 28  2011 sbin
drwxr-xr-x.  5 root  root    4096 Nov  6 22:15 share
drwxr-xr-x.  2 root  root    4096 Jun 28  2011 src


3、启动数据库并进入数据库

[root@host2 local]# /etc/init.d/mysqld start
Starting MySQL.............................................[  OK  ]..............................
[root@host2 local]# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.16-log MySQL Community Server (GPL)



(可以看到数据库已经到5.7版本了)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>


4、更新数据结构(生产环境使用mysql_upgrade更新的时候加-s参数  不重建表)

[root@host2 local]# mysql_upgrade -p123 -s
mysql_upgrade: [Warning] Using a password on the command line interface can be insecure.
The --upgrade-system-tables option was used, databases won't be touched.
Checking if update is needed.
Checking server version.
Running queries to upgrade MySQL server.
Upgrading the sys schema.
Upgrade process completed successfully.
Checking if update is needed.


至此升级成功
5、进入数据库查看

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| test               |
+--------------------+
可以看到sys库已经存在,但是直接安装的5.7的库是没有test库的,这里sys和test同时存在说明是从5.6升级到5.7

看完上述内容,你们掌握mysql5.6怎么升级到mysql5.7的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯