要修改MariaDB數(shù)據(jù)庫的存儲(chǔ)路徑,您需要執(zhí)行以下步驟:
sudo systemctl stop mariadb
備份原始數(shù)據(jù)庫文件。在修改存儲(chǔ)路徑之前,請確保對數(shù)據(jù)庫文件進(jìn)行備份,以防意外發(fā)生。
修改MariaDB配置文件。打開MariaDB的配置文件,通常是/etc/my.cnf
或/etc/mysql/my.cnf
,并找到以下行:
datadir=/var/lib/mysql
將datadir
參數(shù)的值修改為您想要的新存儲(chǔ)路徑,例如:
datadir=/new/path/to/mysql
sudo chown -R mysql:mysql /new/path/to/mysql
sudo mv /var/lib/mysql /new/path/to/mysql
sudo systemctl start mariadb
現(xiàn)在,您已經(jīng)成功修改了MariaDB數(shù)據(jù)庫的存儲(chǔ)路徑。請確保您的數(shù)據(jù)庫可以正常訪問并正常工作。