1、查詢MariaDB包
創(chuàng)新互聯(lián)建站服務(wù)項(xiàng)目包括金鄉(xiāng)網(wǎng)站建設(shè)、金鄉(xiāng)網(wǎng)站制作、金鄉(xiāng)網(wǎng)頁制作以及金鄉(xiāng)網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,金鄉(xiāng)網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到金鄉(xiāng)省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
[root@test ~]# yum list all | grep mariadb
2、安裝mariaDB
[root@test ~]# yum -y install mariadb-server
3、配置mariaDB
[root@test ~]# systemctl start mariadb #啟動MariaDB [root@test ~]# systemctl enable mariadb #設(shè)置MariaDB為開機(jī)自啟動 [root@test ~]# netstat -ntlp #查看3306端口是否成功啟動 [root@test ~]# MySQL_secure_installation #首次安裝需要進(jìn)行數(shù)據(jù)庫的配置 Enter current password for root (enter for none): # 輸入數(shù)據(jù)庫超級管理員root的密碼(注意不是系統(tǒng)root的密碼),第一次進(jìn)入還沒有設(shè)置密碼則直接回車 Set root password? [Y/n] # 設(shè)置密碼,y New password: # 新密碼 Re-enter new password: # 再次輸入密碼 Remove anonymous users? [Y/n] # 移除匿名用戶, y Disallow root login remotely? [Y/n] # 拒絕root遠(yuǎn)程登錄,y Remove test database and access to it? [Y/n] # 刪除test數(shù)據(jù)庫,y:刪除。n:不刪除,數(shù)據(jù)庫中會有一個test數(shù)據(jù)庫,一般不需要 Reload privilege tables now? [Y/n] # 重新加載權(quán)限表,y?;蛘咧貑⒎?wù)也許
4、登錄測試mariaDB
[root@test ~]# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 8 Server version: 5.5.60-MariaDB MariaDB Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> MariaDB [(none)]>quit