CentOS 6 及之前的版本中提供的是 MySQL 的服務(wù)器/客戶(hù)端安裝包,但 CentOS 7 已使用了 MariaDB 替代了默認(rèn)的 MySQL。MariaDB數(shù)據(jù)庫(kù)管理系統(tǒng)是MySQL的一個(gè)分支,主要由開(kāi)源社區(qū)在維護(hù),采用GPL授權(quán)許可 MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能輕松成為MySQL的代替品。
1、刪除自帶 MySQL/MariaDB
1.1、搜索 MariaDB 現(xiàn)有包
使用rpm -qa | grep mariadb搜索 MariaDB 現(xiàn)有的包。如果存在,使用 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-*
錯(cuò)誤:未安裝軟件包 mysql-*
1.2、移除 MariaDB 現(xiàn)有包
如果存在,使用 yum remove mysql mysql-server mysql-libs compat-mysql51
全部刪除:
[root@master ~]# yum remove mysql mysql-server mysql-libs compat-mysql51
已加載插件:fastestmirror, langpacks
參數(shù) mysql 沒(méi)有匹配
參數(shù) mysql-server 沒(méi)有匹配
參數(shù) compat-mysql51 沒(méi)有匹配
正在解決依賴(lài)關(guān)系
--> 正在檢查事務(wù)
---> 軟件包 mariadb-libs.x86_64.1.5.5.52-1.el7 將被 刪除
--> 正在處理依賴(lài)關(guān)系 libmysqlclient.so.18()(64bit),它被軟件包 perl-DBD-MySQL-4.023-5.el7.x86_64 需要
--> 正在處理依賴(lài)關(guān)系 libmysqlclient.so.18()(64bit),它被軟件包 2:postfix-2.10.1-6.el7.x86_64 需要
--> 正在處理依賴(lài)關(guān)系 libmysqlclient.so.18()(64bit),它被軟件包 1:qt-mysql-4.8.5-13.el7.x86_64 需要..........
刪除:
mariadb-libs.x86_64 1:5.5.52-1.el7
作為依賴(lài)被刪除:
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 目錄下無(wú)server.cnf文件,則直接在/etc/my.cnf文件的[mysqld]標(biāo)簽下添加以上內(nèi)容
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用戶(hù)名和密碼
首先用 killall -TERM mysqld
向mysqld server 發(fā)送kill命令關(guān)掉mysqld server(不是 kill -9),你必須是UNIX的root用戶(hù)或者是你所運(yùn)行的SERVER上的同等用戶(hù),才能執(zhí)行這個(gè)操作
然后 /usr/bin/mysqld_safe --skip-grant-tables --skip-networking &
登錄 : mysql -p或者使用mysql無(wú)密碼登錄
use mysql
update user set password=password(“new_pass”) where user=“root”;
flush privileges;
exit;
修改完成之后重啟數(shù)據(jù)庫(kù),即可用修改好 root 密碼登錄 .
總結(jié)
以上所述是小編給大家介紹的CentOS7 安裝 MariaDB 10.2.4的方法,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺(jué)得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!