在Linux系統(tǒng)上,Mysql數(shù)據(jù)庫默認的數(shù)據(jù)文件保存路徑在/var/lib/mysql目錄下。
如果需要修改Mysql數(shù)據(jù)庫的數(shù)據(jù)文件路徑,可以按照以下步驟進行:
1. 停止Mysql數(shù)據(jù)庫服務 sudo systemctl stop mysqld.service 2. 復制/var/lib/mysql目錄到新的路徑 sudo cp -r /var/lib/mysql /new/path/ 3. 給新路徑授權 sudo chown -R mysql:mysql /new/path/mysql 4. 修改Mysql配置文件/etc/my.cnf sudo vim /etc/my.cnf 在[mysqld]下添加: datadir=/new/path/mysql socket=/new/path/mysql/mysql.sock 5. 重啟Mysql數(shù)據(jù)庫服務 sudo systemctl restart mysqld.service
修改完數(shù)據(jù)文件路徑后,可以查看Mysql的數(shù)據(jù)文件是否在新路徑下,也可以使用Mysql客戶端連接Mysql數(shù)據(jù)庫進行測試。