이 기사에서는 MySQL 데이터 디렉터리를 변경하거나 MySQL 데이터베이스 데이터를 새 위치로 재배치하는 방법을 배웁니다. 이 상황은 데이터베이스가 매우 빠르게 성장하거나 보안상의 이유로 데이터 디렉터리를 복사하려는 경우에 사용될 수 있습니다. 새로운 위치로.
계속하기 전에 , 먼저 데이터 디렉터리의 현재 위치를 찾습니다
$ mysql –u root –p Output: Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 472 Server version: 5.6.30-0ubuntu0.14.04.1 (Ubuntu) Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>
MySQL의 루트 비밀번호를 묻는 메시지가 나타나면 비밀번호를 입력합니다. MySQL의 현재 작업 데이터 디렉터리를 확인하려면 다음 명령을 실행하세요.
Mysql> select @@datadir; Output: +-----------------+ | @@datadir | +-----------------+ | /var/lib/mysql/ | +-----------------+ 1 row in set (0.00 sec)
출력에 표시된 것처럼 MySQL 데이터베이스는 /var/lib/MySQL을 데이터 디렉터리의 기본 폴더로 사용합니다. 무엇이든 수정하기 전에 데이터의 무결성을 확인하고 MySQL을 중지하고 상태를 확인합니다
$ sudo systemctl stop mysql
왜냐하면 systemctl은 서비스 명령
$ sudo systemctl status mysql Output: mysql.service - MySQL Community Server Loaded: loaded (/lib/systemd/system/mysql.service; enabled; vendor preset: enabled) Active: inactive (dead) since Mon 2016-09-12 13:57:43 IST; 1s ago Process: 17669 ExecStartPost=/usr/share/mysql/mysql-systemd-start post (code=exited, status=0/SUCCESS) Process: 17668 ExecStart=/usr/sbin/mysqld (code=exited, status=0/SUCCESS) Process: 17664 ExecStartPre=/usr/share/mysql/mysql-systemd-start pre (code=exited, status=0/SUCCESS) Main PID: 17668 (code=exited, status=0/SUCCESS) Sep 12 13:55:14 ubuntu-16 systemd[1]: Starting MySQL Community Server... Sep 12 13:55:15 ubuntu-16 systemd[1]: Started MySQL Community Server. Sep 12 13:57:40 ubuntu-16 systemd[1]: Stopping MySQL Community Server... Sep 12 13:57:43 ubuntu-16 systemd[1]: Stopped MySQL Community Server.
에서 아무 것도 표시하지 않기 때문입니다. MySQL이 중지되었음을 확인한 후에는 데이터를 새 위치로 이동합니다. 데이터를 이동하기 위해 데이터 파일에 대한 권한을 유지하는 –a 옵션과 자세한 출력을 표시하는 –v와 함께 Rsync를 사용합니다.
다음은 데이터를 새 위치로 이동하는 전체 명령입니다.
$ rsync –av /var/lib/mysql /mnt/data_vol/ OutPut: sending incremental file list mysql/ mysql/auto.cnf mysql/debian-5.7.flag mysql/ib_buffer_pool mysql/ib_logfile0 mysql/ib_logfile1 mysql/ibdata1 mysql/mysql/ mysql/mysql/columns_priv.MYD mysql/mysql/columns_priv.MYI mysql/mysql/columns_priv.frm mysql/mysql/db.MYD mysql/mysql/db.MYI mysql/mysql/db.frm mysql/mysql/db.opt …. mysql/sys/x@0024user_summary.frmmysql/sys/x@0024user_summary_by_file_io.frm mysql/sys/x@0024user_summary_by_file_io_type.frm mysql/sys/x@0024user_summary_by_stages.frm mysql/sys/x@0024user_summary_by_statement_latency.frm mysql/sys/x@0024user_summary_by_statement_type.frm mysql/sys/x@0024wait_classes_global_by_avg_latency.frm mysql/sys/x@0024wait_classes_global_by_latency.frm mysql/sys/x@0024waits_by_host_by_latency.frm mysqlsys//x@0024waits_by_user_by_latency.frm mysql/sys/x@0024waits_global_by_latency.frm sent 199,384,083 bytes received 6,858 bytes 132,927,294.00 bytes/sec total size is 199,307,568 speedup is 1.00
rsync 후 데이터 폴더를 새 위치로 성공적으로 이동했습니다. 보안상의 이유로 데이터가 새 위치에 있음을 확인할 때까지 데이터 폴더를 유지하고 현재 데이터 디렉터리의 이름을 /var/lib/mysql에서 /var/lib/mysql_backup으로 바꿉니다. 다음은 현재 데이터 디렉토리를 변경하는 명령입니다.
다음은 현재 데이터 디렉터리를 변경하는 명령입니다.
$ sudo mv /var/lib/mysql /var/lib/mysql_backup
이제 기본 데이터 디렉터리를 변경하겠습니다. 변경하려면 여러 가지 방법이 있지만 /etc/mysql/mysql.conf.d/에 있는 파일을 편집하겠습니다. mysqld.cnf의 mysqld.cnf 파일 .
다음 명령으로 mysqld.cnf를 편집하세요
$ sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf Output: [mysqld_safe] socket = /var/run/mysqld/mysqld.sock nice = 0 [mysqld] # # * Basic Settings # user = mysql pid-file = /var/run/mysqld/mysqld.pid socket = /var/run/mysqld/mysqld.sock port = 3306 basedir = /usr datadir = /mnt/data_vol/mysql/ tmpdir = /tmp lc-messages-dir = /usr/share/mysql skip-external-locking
또한 맨 아래에 /etc/apparmor.d/tunables/alias
도 편집해야 합니다 파일의 별칭을 추가해야 합니다. 규칙에 다음 줄이 있습니다.
$ sudo vi /etc/apparmor.d/tunables/alias Output: # ------------------------------------------------------------------ # # Copyright (C) 2010 Canonical Ltd. # # This program is free software; you can redistribute it and/or # modify it under the terms of version 2 of the GNU General Public # License published by the Free Software Foundation. # # ------------------------------------------------------------------ # Alias rules can be used to rewrite paths and are done after variable # resolution. For example, if '/usr' is on removable media: # alias /usr/ -> /mnt/usr/, # # Or if mysql databases are stored in /home: # alias /var/lib/mysql/ -> /home/mysql/, alias /var/lib/mysql/ -> /mnt/data_vol/mysql
파일을 편집한 후에는 apparmor를 다시 시작해야 합니다.
다음은 의류를 다시 시작하는 명령입니다.
기본 데이터 디렉터리를 변경했으므로 스크립팅 환경을 통과하려면 최소한의 디렉터리 폴더 구조를 생성하는 다음 명령을 실행해야 합니다.
$ sudo mkdir /var/lib/mysql/mysql –p
이제 mysql 서비스를 다시 시작하겠습니다.
$ sudo systemctl start mysql
이제 다음 명령을 사용하여 MySQL 서비스의 상태를 확인합니다.
$ sudo systemctl status mysql Output: mysql.service - MySQL Community Server Loaded: loaded (/lib/systemd/system/mysql.service; enabled; vendor preset: enabled) Active: active (running) since Mon 2016-09-12 14:17:27 IST; 23s ago Process: 18481 ExecStartPost=/usr/share/mysql/mysql-systemd-start post (code=exited, status=0/SUCC Process: 18477 ExecStartPre=/usr/share/mysql/mysql-systemd-start pre (code=exited, status=0/SUCCES Main PID: 18480 (mysqld) Tasks: 28 (limit: 512) Memory: 137.3M CPU: 329ms CGroup: /system.slice/mysql.service └─18480 /usr/sbin/mysqld Sep 12 14:17:26 ubuntu-16 systemd[1]: Starting MySQL Community Server... Sep 12 14:17:27 ubuntu-16 systemd[1]: Started MySQL Community Server.
새 데이터 디렉터리가 변경되었는지 확인하기 위해 다음 명령을 실행합니다.
$ mysql -uroot -p Output: Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.7.13-0ubuntu0.16.04.2 (Ubuntu) Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> select @@datadir +----------------------+ | @@datadir | +----------------------+ | /mnt/data_vol/mysql/ | +-----------------+ 1 row in set (0.00 sec) mysql>
데이터 디렉터리가 변경되었음을 확인한 후, 기본 데이터 디렉토리를 삭제하겠습니다. 이 디렉토리는 /var/lib/mysql_backup에 있습니다. 다음은 이전 데이터베이스 디렉토리를 삭제하는 명령입니다.
$ sudo rm –rf /var/lib/mysql_backup
위 구성 및 단계에서 우리는 MySQL 데이터 디렉터리를 새로운 위치로 재배치하는 방법을 배웠습니다. 이는 더 많은 데이터를 다른 위치에 보호하거나 저장하는 데 도움이 됩니다.
위 내용은 Ubuntu 16.04에서 MySQL 데이터 디렉터리를 다른 위치로 변경하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!