咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
CentOS中使用Yum把MySQL平滑迁移到MariaDB
这篇文章主要介绍了CentOS?使用Yum把MySQL平滑迁移到MariaDB,本文使用YUM实现,安装一个MariaDB的安装源即可,需要的朋友可以参考下
VPS操作系统是CentOS 6,mysql版本是5.5.31(使用了 REMI 源)。
A. 先配置 MariaDB 的安装源。
目前 MariaDB 的主版本是 MariaDB 5.5.33a Stable,将下面的安装源配置保存为MariaDB.repo,上传到服务器的 /etc/yum.repos.d 文件夹:
For CentOS 6 32 bit:
代码如下:
[mariadb] name = MariaDB enable=1 priority=3 baseurl = http://www.landui.com/5.5.33a/centos6-x86/ gpgkey=https://www.landui.com/rpm-GPG-KEY-MariaDB gpgcheck=1
For CentOS 6 64 bit:
代码如下:
[mariadb] name = MariaDB enable=1 priority=3 baseurl = http://www.landui.com/5.5.33a/centos6-amd64/ gpgkey=https://www.landui.com/RPM-GPG-KEY-MariaDB gpgcheck=1
B. 然后直接执行系统升级。
代码如下:
yum update --skip-broken
MariaDB 相关安装包会被安装,不需要的 MySQL 包将被卸载,并且升级之后不需要对系统进行修补。