日韩黑丝制服一区视频播放|日韩欧美人妻丝袜视频在线观看|九九影院一级蜜桃|亚洲中文在线导航|青草草视频在线观看|婷婷五月色伊人网站|日本一区二区在线|国产AV一二三四区毛片|正在播放久草视频|亚洲色图精品一区

分享

centos7 Mariadb5.5升級到Mariadb10.2

 rongq2007 2019-08-13

一次升級過程,在此記錄下。

原因:新的項目需要新的數(shù)據(jù)庫版本支持。

升級主要步驟:

備份原數(shù)據(jù)庫 ---》卸載mariadb ---》添加mariadb國內yum源 ---》安裝mariadb---》初始化數(shù)據(jù)庫---》導入數(shù)據(jù)。

1. 備份原數(shù)據(jù)庫

   由于是對測試環(huán)境的數(shù)據(jù)庫進行升級,數(shù)據(jù)量不多,我直接導出需要遷移的數(shù)據(jù)庫的數(shù)據(jù)到sql文件里。

mysqldump  -uroot  -p  --database database_name >name.sql

2. 卸載mariadb

   由于是在同一臺服務器進行安裝新的Mariadb10.2,所以我們需要將老的版本卸載。

卸載mariadb:

yum remove mariadb

刪除配置文件:

rm -f /etc/my.cnf

刪除數(shù)據(jù)目錄:

rm -rf /var/lib/mysql/

3. 添加mariadb10.2的國內yum源

之前我添加的是國外的源,安裝很耗時,所以我找到國內yum,通過這個源安裝較快。

vim  /etc/yum.repos.d/Mariadb.repo

添加以下內容:

[mariadb]

name = MariaDB

#baseurl = https://mirrors.ustc.edu.cn/mariadb/yum/10.4/centos7-amd64/

baseurl =https://mirrors.ustc.edu.cn/mariadb/yum/10.3/centos6-x86/

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

gpgcheck=1


清除yum源緩存數(shù)據(jù)

yum clean all

生成新的yum源數(shù)據(jù)緩存

yum makecache all

官方y(tǒng)um源(國內安裝較慢)

1
2
3
4
5
6
7
# MariaDB 10.2 CentOS repository list - created 2018-06-06 03:42 UTC
# http://downloads./mariadb/repositories/
[mariadb]
name = MariaDB
baseurl = http://yum./10.2/centos7-amd64
gpgkey=https://yum./RPM-GPG-KEY-MariaDB
gpgcheck=1

官方不同系統(tǒng)yum源網(wǎng)址:https://downloads./mariadb/repositories/#mirror=tuna

4. 安裝mariadb10.2

yum install MariaDB-server MariaDB-client -y

啟動并添加開機自啟:

systemctl start mariadb.service

systemctl enable mariadb.service

systemctl start mariadb  #啟動MariaDB

systemctl stop mariadb  #停止MariaDB

systemctl restart mariadb  #重啟MariaDB

systemctl enable mariadb  #設置開機啟動

--------------------

5. mariadb的初始化

對數(shù)據(jù)庫進行一些基本設置:
# mysql_secure_installation

/usr/bin/mysql_secure_installation

一般建議按以下進行配置:

Enter current password for root (enter for none): Just press the Enter button
Set root password? [Y/n]: YNew password: your-MariaDB-root-passwordRe-enter new password: your-MariaDB-root-passwordRemove anonymous users? [Y/n]: YDisallow root login remotely? [Y/n]: nRemove test database and access to it? [Y/n]: YReload privilege tables now? [Y/n]: Y

6. 導入數(shù)據(jù)到新版本mariadb

方法一:

登陸mysql后用source命令:(后面跟的是我們備份的sql文件的路徑)

source /root/backup/java_api.sql

方法二:

在命令行直接導入

mysql -uroot -p >/root/backup/java_api.sql

以上就是整個版本升級的過程了。

作者:理想三旬

    本站是提供個人知識管理的網(wǎng)絡存儲空間,所有內容均由用戶發(fā)布,不代表本站觀點。請注意甄別內容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權內容,請點擊一鍵舉報。
    轉藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多