如何在 Linux 上安裝 MariaDB 或 MySQL

安全劍客發表於2020-11-07
導讀 MariaDB 和 MySQL 都是使用 SQL 的開源資料庫,並且共享相同的初始程式碼庫。MariaDB 是 MySQL 的替代品,你可以使用相同的 (mysql)與 MySQL 和 MariaDB 資料庫進行互動。因此,本文同時適用於 MariaDB 和 MySQL。

如何在 Linux 上安裝 MariaDB 或 MySQL如何在 Linux 上安裝 MariaDB 或 MySQL

開始在   系統上使用開源的 SQL 資料庫吧。

MariaDB 和 MySQL 都是使用 SQL 的開源資料庫,並且共享相同的初始程式碼庫。MariaDB 是 MySQL 的替代品,你可以使用相同的 (mysql)與 MySQL 和 MariaDB 資料庫進行互動。因此,本文同時適用於 MariaDB 和 MySQL。

安裝 MariaDB

你可以使用你的 Linux 發行版的包管理器安裝 MariaDB。在大多數發行版上,MariaDB 分為伺服器包和客戶端包。伺服器包提供了資料庫“引擎”,即 MariaDB 在後臺執行(通常在物理伺服器上)的部分,它監聽資料輸入或資料輸出請求。客戶端包提供了 mysql 命令,你可以用它來與伺服器通訊。

在 RHEL、Fedora、  或類似的發行版上:

$ sudo dnf install mariadb mariadb-server

在 Debian、Ubuntu、Elementary 或類似的發行版上:

$ sudo apt install mariadb-client mariadb-server

其他作業系統可能會以不同的打包系統封裝 MariaDB,所以你可能需要搜尋你的軟體倉庫來了解你的發行版的維護者是如何提供它的。

啟動 MariaDB

因為 MariaDB 被設計為部分作為資料庫伺服器,它可以在一臺計算機上執行,並從另一臺計算機上進行管理。只要你能訪問執行它的計算機,你就可以使用 mysql 命令來管理資料庫。在寫這篇文章時,我在本地計算機上執行了 MariaDB,但你同樣可與遠端系統上託管的 MariaDB 資料庫進行互動。

在啟動 MariaDB 之前,你必須建立一個初始資料庫。在初始化其檔案結構時,你應該定義你希望 MariaDB 使用的使用者。預設情況下,MariaDB 使用當前使用者,但你可能希望它使用一個專用的使用者帳戶。你的包管理器可能為你配置了一個系統使用者和組。使用 grep 查詢是否有一個 mysql 組:

$ grep mysql /etc/group
mysql:x:27:

你也可以在 /etc/passwd 中尋找這個專門的使用者,但通常情況下,有組就會有使用者。如果沒有專門的 mysql 使用者和組,可以在 /etc/group 中尋找一個明顯的替代品(比如 mariadb)。如果沒有,請閱讀你的發行版文件來了解 MariaDB 是如何執行的。

假設你的安裝使用 mysql,初始化資料庫環境:

$ sudo mysql_install_db --user=mysql
Installing MariaDB/MySQL system tables in '/var/lib/mysql'...
OK
[...]

這一步的結果顯示了接下來你必須執行的配置 MariaDB 的任務:

PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
To do so, start the server, then issue the following commands:
 
'/usr/bin/mysqladmin' -u root password 'new-password'
'/usr/bin/mysqladmin' -u root -h $(hostname) password 'new-password'
 
Alternatively you can run:
'/usr/bin/mysql_secure_installation'
 
which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

使用你的發行版的初始化系統啟動 MariaDB:

$ sudo systemctl start mariadb

在啟動時啟用 MariaDB 伺服器:

$ sudo systemctl enable --now mariadb

現在你已經有了一個 MariaDB 伺服器,為它設定一個密碼:

mysqladmin -u root password 'myreallysecurepassphrase'
mysqladmin -u root -h $(hostname) password 'myreallysecurepassphrase'

最後,如果你打算在生產伺服器上使用它,請在上線前執行 mysql_secure_installation 命令。

原文來自: 


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

相關文章