這篇“CentOS7.2安裝MariaDB實(shí)例分析”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“CentOS7.2安裝MariaDB實(shí)例分析”文章吧。
成都創(chuàng)新互聯(lián)公司主營(yíng)軹城網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,重慶APP軟件開(kāi)發(fā),軹城h5微信小程序定制開(kāi)發(fā)搭建,軹城網(wǎng)站營(yíng)銷(xiāo)推廣歡迎軹城等地區(qū)企業(yè)咨詢(xún)
mariadb簡(jiǎn)介
mariadb數(shù)據(jù)庫(kù)管理系統(tǒng)是MySQL的一個(gè)分支,主要由開(kāi)源社區(qū)在維護(hù),采用gpl授權(quán)許可 mariadb的目的是完全兼容mysql,包括api和命令行,使之能輕松成為mysql的代替品。在存儲(chǔ)引擎方面,使用xtradb(英語(yǔ):xtradb)來(lái)代替mysql的innodb。 mariadb由mysql的創(chuàng)始人michael widenius(英語(yǔ):michael widenius)主導(dǎo)開(kāi)發(fā),他早前曾以10億美元的價(jià)格,將自己創(chuàng)建的公司mysql ab賣(mài)給了sun,此后,隨著sun被甲骨文收購(gòu),mysql的所有權(quán)也落入oracle的手中。mariadb名稱(chēng)來(lái)自michael widenius的女兒maria的名字。
安裝mariadb 5.5
安裝mariadb 5.5是centos 7的默認(rèn)版本,配置數(shù)據(jù)庫(kù)服務(wù)器
[root@linuxprobe~]# yum -y install mariadb-server [root@linuxprobe~]# vi /etc/my.cnf # add follows within [mysqld] section [mysqld] character-set-server=utf8 [root@linuxprobe~]# systemctl start mariadb [root@linuxprobe~]# systemctl enable mariadb ln -s '/usr/lib/systemd/system/mariadb.service' '/etc/systemd/system/multi-user.target.wants/mariadb.service'
初始化mariadb
復(fù)制代碼 代碼如下:
[root@linuxprobe~]# mysql_secure_installation #和mysql一樣,一路y
連接mariadb
[root@linuxprobe ~]# mysql -u root -p enter password: welcome to the mariadb monitor. commands end with ; or \g. your mariadb connection id is 1023 server version: 5.5.50-mariadb mariadb server copyright (c) 2000, 2016, oracle, mariadb corporation ab and others. type 'help;' or '\h' for help. type '\c' to clear the current input statement. mariadb [(none)]> select user,host,password from mysql.user; +-----------+-----------+-------------------------------------------+ | user | host | password | +-----------+-----------+-------------------------------------------+ | root | localhost | *f1dae8bcdfca7a57f246e0f834ac35830a3d640e | | root | 127.0.0.1 | *f1dae8bcdfca7a57f246e0f834ac35830a3d640e | | root | ::1 | *f1dae8bcdfca7a57f246e0f834ac35830a3d640e | +-----------+-----------+-------------------------------------------+ 5 rows in set (0.00 sec) mariadb [(none)]> show databases; +--------------------+ | database | +--------------------+ | information_schema | | mysql | | performance_schema | +--------------------+ 5 rows in set (0.05 sec) mariadb [(none)]> exit; bye
防火墻開(kāi)啟3306端口
# 客戶(hù)端設(shè)置 [root@vdevops ~]# firewall-cmd --add-service=mysql --permanent success [root@vdevops ~]# firewall-cmd --reload success
安裝phpmyadmin
前提安裝web服務(wù)器和php,參考下面:
安裝phpmyadmin
# install from epel [root@linuxprobe~]# yum --enablerepo=epel -y install phpmyadmin php-mysql php-mcrypt [root@linuxprobe~]# vi /etc/httpd/conf.d/phpmyadmin.conf # line 17: ip address you permit to access require ip 127.0.0.1 10.1.1.0/24 # line 34: ip address you permit to access require ip 127.0.0.1 10.1.1.o/24 [root@linuxprobe ~]# systemctl restart httpd
使用web瀏覽器從客戶(hù)端訪問(wèn)“http://(您的主機(jī)名或ip地址)/ phpmyadmin /',然后在mariadb的用戶(hù)在以下屏幕上登錄。此示例使用root用戶(hù)繼續(xù)。
登錄之后,您可以在這里操作mariadb
mariadb 主從復(fù)制
mariadb 主從復(fù)制和mysql主從復(fù)制相同,請(qǐng)移步到:
安裝 mariadb 10.1
配置 centos sclo源倉(cāng)庫(kù)
復(fù)制代碼 代碼如下:
[root@linuxprobe ~]# yum --enablerepo=centos-sclo-rh -y install rh-mariadb101-mariadb-server
來(lái)自centos-sclo-rh的軟件包安裝在/ opt目錄下。 要使用它,加載環(huán)境變量如下。
[root@linuxprobe ~]# scl enable rh-mariadb101 bash [root@linuxprobe ~]# mysql -v mysql ver 15.1 distrib 10.1.14-mariadb, for linux (x86_64) using editline wrapper [root@linuxprobe ~]# which mysql /opt/rh/rh-mariadb101/root/usr/bin/mysql
如果您希望在登錄時(shí)自動(dòng)啟用mariadb 10.1,請(qǐng)如下配置
[root@linuxprobe ~]# vi /etc/profile.d/rh-mariadb101.sh # create new #!/bin/bash source /opt/rh/rh-mariadb101/enable export x_scls="`scl enable rh-mariadb101 'echo $x_scls'`"
啟用mariadb 10.1并配置初始設(shè)置
復(fù)制代碼 代碼如下:
[root@linuxprobe ~]# mysql_secure_installation
以上就是關(guān)于“CentOS7.2安裝MariaDB實(shí)例分析”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。