【kingsql分享】mysql數據庫的本機遷移
方法有很多,包含並不局限於以下方法:
1.可以遷移到另外一套高性能服務器上
2.如果是邏輯卷,可以擴大邏輯卷
3.添加新的大容量存儲空間,本機遷移
咱們今天就來演示一下第3種方法
比如添加了更大容量的存儲空間,然後mount上了,這個空間是/kingsql2
一、創建存儲目錄
[root@linux01 ~]# mkdir -p /kingsql2/data/new
[root@linux01 ~]# chown mysql.mysql -R /kingsql2
二、關閉數據庫
[root@linux01 ~]# mysqladmin -uroot -p shutdown
2018-12-06T03:31:47.583285Z mysqld_safe mysqld from pid file /kingsql/database/mysql/mysqld.pid ended
[1]+ Done mysqld_safe (wd: /kingsql/database/mysql)
(wd now: ~)
三、“挪”一下
[root@linux01 ~]# rsync -av /kingsql/database/mysql/data/ /kingsql2/data/new/
四、參數文件改這個參數
datadir = /kingsql2/data/new
五、啟動之後,驗證一下參數
[root@linux01 ~]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.21 MySQL Community Server (GPL)
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
owners.
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
mysql> show variables like ‘datadir‘;
+---------------+---------------------+
| Variable_name | Value |
+---------------+---------------------+
| datadir | /kingsql2/data/new/ |
+---------------+---------------------+
1 row in set (0.02 sec)
六、轉載請註明出處,謝謝
@@@@@@@@@@@@@@@@@@@
洪卓輝 51CTO在線講師
@@@@@@@@@@@@@@@@@@@
【kingsql分享】mysql數據庫的本機遷移