Tutorial on Migrating Projects from MYSQL to MARIADB

Tutorial on Migrating Projects from MYSQL to MARIADB

Prepare the database (MySQL). If you already have MySQL, you can ignore this.

build MySQL table;

Connect to MySQL;

mysql -u root -p

Create a data table;

mysql> create database demo;

mysql> use demo;

mysql> create table pet(name varchar(30), owner varchar(30), species varchar(20), sex char(1));

Add data table content;

mysql> insert into pet values('brandon','Jack','puddle','m'),('dixie','Danny','chihuahua','f');

exit(); ---- Exit MySQL

backup MySQL;

Foreword, enable binary;

Back up the data table; back up my.cnf;

$ mysqldump --all-databases --user=root --password --master-data > backupdb.sql

$ sudo cp /etc/mysql/my.cnf /opt/my.cnf.bak



del MySQL;

Stop the MySQL service;

$ sudo service mysql stop //RHEL6

$ sudo systemctl stop mysql //RHEL7

$ sudo /etc/init.d/mysql stop //RHEL6

Remove MySQL configuration and files;

$ sudo yum remove mysql* mysql-server mysql-devel mysql-libs

$ sudo rm -rf /var/lib/mysql

build mariadb;

Install mariadb and related dependency packages;

$ sudo vi /etc/yum.repos.d/MariaDB.repo //創建自定義的yum源

....................................... //The following is the file content

[mariadb]

name = MariaDB

baseurl = http://yum.mariadb.org/5.5/centos7-amd64

gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB

gpgcheck=1

.......................................

$ sudo yum install MariaDB-server MariaDB-client//安裝MariaDB

Restore the my.cnf file;

$ sudo cp /opt/my.cnf /etc/mysql/

Start mariadb;

$ sudo service mariadb start

$ sudo systemctl start mariadb

$ sudo /etc/init.d/mariadb start

MySQL ==>> MARIADB;

Import the data table into mariadb;

$ mysql -u root -p < backupdb.sql

The following content appears, indicating that the login is successful; Congratulations;

$ mysql -u root -p

......................................//The following is the sql command

MariaDB [(none)]> show databases;

MariaDB [(none)]> use test01;

MariaDB [test01]> select * from pet;

You may also be interested in:
  • Restart MariaDB with mysql under Centos7
  • Detailed explanation of MariaDB installation method for basic use of MySQL
  • Issues encountered when migrating from MySQL 5.5 to MariaDB 10.1.14
  • Basic operation tutorial for migrating database from MySQL to MariaDB under Linux
  • A brief discussion on the difference between MySQL and MariaDB
  • MySQL fork selection reference: Percona or MariaDB

<<:  Example code for developing h5 form page based on react hooks and zarm component library configuration

>>:  React+Koa example of implementing file upload

Recommend

CSS element hiding principle and display:none and visibility:hidden

1. CSS element hiding <br />In CSS, there ar...

A brief discussion of 12 classic problems in Angular

Table of contents 1. Please explain what are the ...

MySQL series 6 users and authorization

Table of contents Tutorial Series 1. User Managem...

Play and save WeChat public account recording files (convert amr files to mp3)

Table of contents Audio transcoding tools princip...

Summary of 4 ways to add users to groups in Linux

Preface Linux groups are organizational units use...

How to split and merge multiple values ​​in a single field in MySQL

Multiple values ​​combined display Now we have th...

Detailed explanation of mysql record time-consuming sql example

mysql records time-consuming sql MySQL can record...

Mysql 5.6.37 winx64 installation dual version mysql notes

If MySQL version 5.0 already exists on the machin...

Basic use of javascript array includes and reduce

Table of contents Preface Array.prototype.include...

Beginners learn some HTML tags (1)

Beginners can learn HTML by understanding some HT...

Detailed explanation of table return and index coverage examples in MySQL

Table of contents Index Type Index structure Nonc...

Example of how to exit the loop in Array.forEach in js

Table of contents forEach() Method How to jump ou...