修改mysql資料庫儲存目錄

來源:互聯網
上載者:User

標籤:style   blog   color   使用   strong   檔案   資料   ar   

使用了VPS一段時間之後發現磁碟空間快滿了。本人的VPS在購買的時候買了500gb的磁碟,供應商贈送了20GB的高效能系統磁碟。這樣系統就有兩個磁碟空間了。在初次安裝mysql 的時候將資料庫目錄安裝在了系統硬碟。(第一個磁碟)使用了一段時間之後資料庫儲存量變大,快將20GB的存放空間佔滿了。因此必須將存放資料空間換地方了。嘿嘿下面是簡單的操作了。

操作步驟:

1.檢查mysql資料庫存放目錄:

#進入資料庫    show variables like ‘%dir%‘;        #查看sql儲存路徑   (查看datadir 那一行所指的路徑)    quit;

2.停止mysql服務:

/etc/init.d/mysql stop

3.建立新的資料庫存放目錄:

mkdir /data/mysql

4.移動/複製之前存放資料庫目錄檔案,到新的資料庫存放目錄位置:

cp -rp /usr/local/mysql/data/* /data/mysql/    #或mv /usr/local/mysql/data/* /data/mysql

5.修改mysql資料庫目錄許可權以及設定檔:

chown mysql:mysql -R /data/mysql/vi /etc/my.cnfdatadir=/data/mysql (制定為新的資料存放目錄)

6.啟動資料庫服務:

/etc/init.d/mysql start

7.檢測是否成功

#進入資料庫    show variables like ‘%dir%‘; 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.