博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql-5.6 升级 5.7
阅读量:6501 次
发布时间:2019-06-24

本文共 1790 字,大约阅读时间需要 5 分钟。

#准备工作1、停机[root@localhost local]# /etc/init.d/mysqld stopShutting down MySQL..                                      [确定]2、切换版本[root@localhost local]# mv /root/mysql-5.6.27-linux-glibc2.5-x86_64.tar.gz ./mysql-5.7[root@localhost local]# ln -s mysql-5.7 mysql[root@localhost local]# ls -l总用量 48drwxr-xr-x.  2 root  root  4096 9月  23 2011 bindrwxr-xr-x.  2 root  root  4096 9月  23 2011 etcdrwxr-xr-x.  2 root  root  4096 9月  23 2011 gamesdrwxr-xr-x.  2 root  root  4096 9月  23 2011 includedrwxr-xr-x.  2 root  root  4096 9月  23 2011 libdrwxr-xr-x.  2 root  root  4096 9月  23 2011 lib64drwxr-xr-x.  2 root  root  4096 9月  23 2011 libexeclrwxrwxrwx.  1 root  root     9 11月 12 03:52 mysql -> mysql-5.7drwxr-xr-x. 13 mysql mysql 4096 11月 12 03:24 mysql-5.6drwxr-xr-x.  9  7161 wheel 4096 10月 12 15:29 mysql-5.7drwxr-xr-x.  2 root  root  4096 9月  23 2011 sbindrwxr-xr-x.  5 root  root  4096 10月 22 02:36 sharedrwxr-xr-x.  2 root  root  4096 9月  23 2011 src3、启动 5.7[root@localhost local]# /etc/init.d/mysqld startStarting MySQL...                                          [确定]4、运行mysql_upgrade -s  -s 只更新系统表[root@localhost local]# mysql_upgrade -sThe --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               |+--------------------+5 rows in set (0.00 sec)#注意多了个sys库,表示升级成功!#降级http://dev.mysql.com/doc/refman/5.7/en/downgrading-to-previous-series.html

转载于:https://my.oschina.net/web256/blog/530486

你可能感兴趣的文章
Visual Studio 11 Beta新特性(一):安装VS11
查看>>
通信常用概念
查看>>
PreferenceFragment 使用 小结
查看>>
FreeBinary 格式说明
查看>>
oracle相关链接
查看>>
有关奇葩的mex编程时的matlab出现栈内存错误的问题
查看>>
探索 | 容器存储有哪些问题和机遇?
查看>>
使用Spring Cloud和Docker构建微服务
查看>>
常用链接
查看>>
NB-IoT的成功商用不是一蹴而就
查看>>
九州云实战人员为您揭秘成功部署OpenStack几大要点
查看>>
1.电子商务支付方式有哪些 2.比较不同支付方式的优势劣势
查看>>
医疗卫生系统被爆漏洞,7亿公民信息泄露……
查看>>
神秘函件引发的4G+与全网通的较量
查看>>
Windows下与Linux下编写socket程序的区别
查看>>
CloudCC:智能CRM究竟能否成为下一个行业风口?
查看>>
高德开放平台推出LBS游戏行业解决方案提供专业地图平台能力支持
查看>>
追求绿色数据中心
查看>>
Web开发初学指南
查看>>
OpenStack Days China:华云数据CTO郑军分享OpenStack创新实践
查看>>