詳解CentOS7 安裝 MariaDB 10.2.4的方法
CentOS 6 及之前的版本中提供的是 MySQL 的伺服器/客戶端安裝包,但 CentOS 7 已使用了 MariaDB 替代了預設的 MySQL。MariaDB資料庫管理系統是MySQL的一個分支,主要由開源社群在維護,採用GPL授權許可 MariaDB的目的是完全相容MySQL,包括API和命令列,使之能輕鬆成為MySQL的代替品。
1、刪除自帶 MySQL/MariaDB
1.1、搜尋 MariaDB 現有包
使用rpm -qa | grep mariadb搜尋 MariaDB 現有的包。如果存在,使用rpm -e --nodeps mariadb-*全部刪除:
[root@master ~]# rpm -qa | grep mariadb mariadb-server-5.5.52-1.el7.x86_64 mariadb-libs-5.5.52-1.el7.x86_64 [root@localhost ~]# rpm -e mysql-*
錯誤:未安裝軟體包 mysql-*
1.2、移除 MariaDB 現有包
如果存在,使用 yum remove mysql mysql-server mysql-libs compat-mysql51
全部刪除:
[root@master ~]# yum remove mysql mysql-server mysql-libs compat-mysql51 已載入外掛:fastestmirror,langpacks 引數 mysql 沒有匹配 引數 mysql-server 沒有匹配 引數 compat-mysql51 沒有匹配 正在解決依賴關係 --> 正在檢查事務 ---> 軟體包 mariadb-libs.x86_64.1.5.5.52-1.el7 將被 刪除 --> 正在處理依賴關係 libmysqlclient.so.18()(64bit),它被軟體包 perl-DBD-MySQL-4.023-5.el7.x86_64 需要 --> 正在處理依賴關係 libmysqlclient.so.18()(64bit),它被軟體包 2:postfix-2.10.1-6.el7.x86_64 需要 --> 正在處理依賴關係 libmysqlclient.so.18()(64bit),它被軟體包 1:qt-mysql-4.8.5-13.el7.x86_64 需要.......... 刪除: mariadb-libs.x86_64 1:5.5.52-1.el7 作為依賴被刪除: akonadi-mysql.x86_64 0:1.9.2-4.el7 mariadb-server.x86_64 1:5.5.52-1.el7 perl-DBD-MySQL.x86_64 0:4.023-5.el7 postfix.x86_64 2:2.10.1-6.el7 qt-mysql.x86_64 1:4.8.5-13.el7 完畢! [root@master ~]# rpm -qa|grep mariadb [root@master ~]#
2、MariaDB 安裝
2、Server 和 Client 安裝
[root@master ~]# yum -y install MariaDB-server MariaDB-client Loaded plugins: fastestmirror,langpacks (1/7): epel/7/x86_64/updateinfo ... (7/7): pgdg95/7/x86_64/primary_db Loading mirror speeds from cached hostfile Resolving Dependencies --> Running transaction check ... --> Finished Dependency Resolution Dependencies Resolved ============================================================================== Package Arch Version ============================================================================== Installing: MariaDB-client x86_64 10.2.4-1.el7.centos MariaDB-server x86_64 10.2.4-1.el7.centos Installing for dependencies: MariaDB-common x86_64 10.2.4-1.el7.centos MariaDB-compat x86_64 ... Transaction Summary ============================================================================== Install 2 Packages (+12 Dependent packages) Total size: 173 M Total download size: 113 M Installed size: 731 M ...
Complete!
[root@master ~]# systemctl start mariadb [root@master ~]# systemctl enable mariadb [root@master ~]# systemctl restart mariadb [root@master ~]# systemctl stop mariadb.service
[root@master ~]# mysql -uroot -p123456
[root@master etc]# cat /etc/my.cnf
如果/etc/my.cnf.d 目錄下無server.cnf檔案,則直接在/etc/my.cnf檔案的[mysqld]標籤下新增以上內容
init_connect='SET collation_connection = utf8_unicode_ci' init_connect='SET NAMES utf8' character-set-server=utf8 collation-server=utf8_unicode_ci skip-character-set-client-handshake [root@master my.cnf.d]# mysql -uroot -p123456 MariaDB [(none)]> show variables like "%character%";show variables like "%collation%";
MariaDB [(none)]> create user mariadb@localhost identified by '123456'; MariaDB [(none)]> grant all on *.* to mariadb@localhost identified by '123456'; MariaDB [(none)]> grant all privileges on *.* to mariadb@'%' identified by '123456'; MariaDB [(none)]> grant all privileges on *.* to mariadb@'master' identified by '123456' with grant option; MariaDB [(none)]> use mysql;
MariaDB [mysql]> select host,user,password from user;
忘記root使用者名稱和密碼
首先用 killall -TERM mysqld
向mysqld server 傳送kill命令關掉mysqld server(不是 kill -9),你必須是UNIX的root使用者或者是你所執行的SERVER上的同等使用者,才能執行這個操作
然後 /usr/bin/mysqld_safe --skip-grant-tables --skip-networking &
登入 : mysql -p或者使用mysql無密碼登入
use mysql update user set password=password(“new_pass”) where user=“root”; flush privileges; exit;
修改完成之後重啟資料庫,即可用修改好 root 密碼登入 .
總結
以上所述是小編給大家介紹的CentOS7 安裝 MariaDB 10.2.4的方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回覆大家的。在此也非常感謝大家對我們網站的支援!
如果你覺得本文對你有幫助,歡迎轉載,煩請註明出處,謝謝!