在Linux系統(tǒng)上安裝MariaDB數(shù)據(jù)庫的步驟如下:
打開終端并以root用戶登錄。
確保系統(tǒng)已更新到最新版本,可以運行以下命令進行更新:
apt-get update
apt-get install mariadb-server
安裝過程中會提示設(shè)置root用戶密碼,請設(shè)定一個安全的密碼。
安裝完成后,可以運行以下命令來啟動MariaDB服務(wù):
systemctl start mariadb
systemctl enable mariadb
mysql_secure_installation
至此,您已成功在Linux系統(tǒng)上安裝了MariaDB數(shù)據(jù)庫。可以使用以下命令來登錄到MariaDB:
mysql -u root -p
輸入您在安裝過程中設(shè)置的root密碼即可登錄。