Prepare the database (MySQL). If you already have MySQL, you can ignore this. Connect to MySQL; 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; 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; ....................................... //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 ....................................... Restore the my.cnf file; Start mariadb; $ sudo service mariadb start $ sudo systemctl start mariadb $ sudo /etc/init.d/mariadb start MySQL ==>> MARIADB; Import the data table into mariadb; The following content appears, indicating that the login is successful; Congratulations; ......................................//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:
|
>>: React+Koa example of implementing file upload
1. CSS element hiding <br />In CSS, there ar...
When encapsulating the date picker, you need to d...
Table of contents 1. Please explain what are the ...
1. Download the installation package The installa...
Recently, when I was using the Linux operating sy...
Table of contents Tutorial Series 1. User Managem...
Table of contents Audio transcoding tools princip...
Preface Linux groups are organizational units use...
Multiple values combined display Now we have th...
mysql records time-consuming sql MySQL can record...
If MySQL version 5.0 already exists on the machin...
Table of contents Preface Array.prototype.include...
Beginners can learn HTML by understanding some HT...
Table of contents Index Type Index structure Nonc...
Table of contents forEach() Method How to jump ou...