centos7 安裝MariaDB 10.6

哈哈哈hh發表於2022-04-02

映象下載、域名解析、時間同步請點選  阿里雲開源映象站

背景

centos7使用yum install mariadb-server命令安裝的預設版本是5.5的,這是因為系統預設源只有5.5的版本,所以我們去增加一個10.6的源

增加源

去mariaDB官網找到對應的源

這是我選的源

file

複製這部分作為centos7的源

# MariaDB 10.6 CentOS repository list - created 2021-12-22 11:16 UTC
# 
[mariadb]
name = MariaDB
baseurl = 
gpgkey=
gpgcheck=1

新增maridb源

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

把剛在mariadb官網複製的原始碼貼上進去

file

安裝

源的問題解決了,現在可以執行安裝了,再次執行該命令就會發現安裝的是10.6的版本了

yum install MariaDB-server MariaDB-client

配置 MariaDB

mariadb-secure-installation

Enter current password for root (enter for none): 輸入當前的root密碼(預設空),直接回車

Set root password? [Y/n] 設定新密碼,y

Remove anonymous users? [Y/n] 移除匿名使用者,y

Disallow root login remotely? [Y/n] 禁止root使用者遠端登入,y

Remove test database and access to it? [Y/n] 移除測試資料庫,y

Reload privilege tables now? [Y/n] y

啟動MariaDB

啟動

 systemctl start mariadb

設定開機自啟

 systemctl enable mariadb

配置檔案位置:/etc/my.cnf

本文轉自:https://blog.csdn.net/sqlquan/article/details/122093702


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70003733/viewspace-2885475/,如需轉載,請註明出處,否則將追究法律責任。

相關文章