어떻게 CentOS 7 에 MariaDB 마스터 복 제 를 설정 합 니까?

The concept of database replication ensures that data is copied across multiple servers from a Master server. This provides data redundancy and ensures that data is not lost in the event that the Master node fails. In this article, we take a look at MariaDB Master-Slave replication on CentOS 7. We will demonstrate how data can be copied from a database located on a Master node to another database located on a Slave system.
데이터베이스 복제 의 개념 은 메 인 서버 에서 여러 서버 에 걸 쳐 데 이 터 를 복제 하 는 것 을 확보 할 수 있다.이렇게 하면 데이터 가 불필요 하고 메 인 노드 가 고장 난 상황 에서 데 이 터 를 잃 어 버 리 지 않도록 확보 할 수 있다.본 논문 에서 우 리 는 CentOS 7 의 MariaDB 주종 복 제 를 연구 할 것 이다.우 리 는 메 인 노드 에 있 는 데이터 베 이 스 를 시스템 에 있 는 다른 데이터 베이스 로 복사 하 는 방법 을 보 여 줄 것 이다.
MariaDB 주종 복제 방안 (MariaDB Master - Slave Replication Scenario)
Here’s the replication Set-up:
이것 은 복사 설정 입 니 다:
Master node (CentOS 7 64 bit) : IP 173.82.2.236

Slave node: (CentOS 7 64 bit) : IP 173.82.94.57

STEP 1: 메 인 노드 와 노드 에 MariaDB 설치 (Step 1: Install MariaDB on both the Master and Slave node)
To start off, log in to both the master and slave node and run the following commands to install MariaDB server
우선, 메 인 노드 와 노드 에 로그 인 한 다음 에 다음 명령 을 실행 하여 MariaDB 서버 를 설치 합 니 다.
yum install mariadb-server mariadb

Sample Output
샘플 출력
Start MariaDB service and enable it on boot
MariaDB 서 비 스 를 시작 하고 시작 할 때 사용 합 니 다.
# systemctl start mariadb
# systemctl enable mariadb

Sample Output
샘플 출력
STEP 2: 홈 서버 와 서버 에 MariaDB 비밀번호 설정 (Step 2: Set MariaDB password on both Master and Slave)
By default, the password for MariaDB/MySQL is usually empty and unauthorized users can access the database. We need to make it secure by configuring a password and hardening it with other few settings. To achieve this run the command below on both the master and the slave node
기본적으로 MariaDB/MySQL 의 비밀 번 호 는 비어 있 으 며 권한 이 부여 되 지 않 은 사용 자 는 데이터 베 이 스 를 방문 할 수 있 습 니 다.우 리 는 비밀 번 호 를 설정 하고 다른 설정 을 사용 하여 그것 을 안전하게 보강 해 야 한다.이 를 위해 주 노드 와 노드 에서 다음 명령 을 실행 하 십시오.
mysql_secure_installation

Sample Output
샘플 출력
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user.  If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none): 
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

Set root password? [Y/n] y ## Enter Y and press Enter
New password:   ## Enter new password
Re-enter new password:  ## Enter password again
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y  ## Enter Y and press Enter
 ... Success!

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y  ## Enter Y and press Enter
 ... Success!

By default, MariaDB comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y  ## Enter Y and press Enter
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y  ## Enter Y and press Enter
 ... Success!

Cleaning up...

All done!  If you've completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!

STEP 3: 메 인 노드 설정 (STEP 3: 마스터 노드 구성)
Now that we have hardened our MariaDB instances on both nodes, Let’s configure the Master node.
우리 가 이미 두 노드 에 MariaDB 인 스 턴 스 를 보강 한 이상 우 리 는 메 인 노드 를 설정 합 니 다.
First, we need to allow MariaDB’s port 3306 across the CentOS 7 firewall. To accomplish this, run the commands
우선, 우 리 는 CentOS 7 방화벽 에서 MariaDB 의 포트 3306 을 허용 해 야 한다.이 를 위해 명령 을 실행 하 십시오
# firewall-cmd --add-port=3306/tcp --zone=public --permanent

Sample Output
샘플 출력
The reload the firewall to effect the changes
변경 사항 을 적용 하기 위해 방화벽 을 다시 불 러 옵 니 다.
# firewall-cmd --relaod

Sample Output
샘플 출력
Next, make a few changes to the /etc/my.cnf file
다음은 /etc/my.cnf 파일 을 변경 합 니 다.
vim /etc/my.cnf

append the following lines in the [mysqld] section
[my sqld] 부분 에 다음 줄 을 추가 합 니 다.
[mysqld]
server_id=1
log-basename=master
log-bin
binlog-format=row
binlog-do-db=replica_db
[...]


Here, replica_db is the database that we are going to create and replicate it across the slave.
여기 있 습 니 다. replicadb 는 우리 가 만 들 고 종속 서버 사이 에서 데이터 베 이 스 를 복사 할 것 입 니 다.
Next, restart the MariaDB service using command:
다음 명령 을 사용 하여 MariaDB 서 비 스 를 다시 시작 합 니 다.
systemctl restart mariadb

Now we are going to login to MariaDB as root user:
현재, 우 리 는 루트 사용자 로 MariaDB 에 로그 인 할 것 입 니 다.
mysql -u root -p

The next step will be to Create the replica_db database
다음 단 계 는 copy 를 만 드 는 것 입 니 다.db 데이터베이스
MariaDB [(none)]> CREATE DATABASE replica_db;

Next, create a Slave user and password. For example, we will use slave_user as Slave username and P@ssword100 as password:
다음은 종속 사용자 와 비밀 번 호 를 만 듭 니 다.예 를 들 어, 우 리 는 slave 를 사용 할 것 이다.user 는 사용자 이름 으로 P @ ssword 100 을 암호 로 사용 합 니 다.
MariaDB [(none)]> STOP SLAVE;
Query OK, 0 rows affected, 1 warning (0.00 sec)

MariaDB [(none)]> GRANT REPLICATION SLAVE ON *.* TO 'slave_user'@'%' IDENTIFIED BY 'P@ssword100';
Query OK, 0 rows affected (0.00 sec)

Next, Flush the privileges as shown
다음, 특권 갱신, 아래 와 같 습 니 다.
MariaDB [(none)]> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> FLUSH TABLES WITH READ LOCK;
Query OK, 0 rows affected (0.00 sec)

Next, execute the command below to display the master status
다음 명령 을 실행 하여 주 상 태 를 표시 합 니 다.
SHOW MASTER STATUS;

STEP 4: 메 인 서버 의 데이터 베 이 스 를 백업 하고 서버 에서 전송 합 니 다 (Step 4: Backing up the database in Master server and transfer it to the Slave)
Next, run the command below to back up all the Master databases
다음 명령 을 실행 하여 모든 Master 데이터 베 이 스 를 백업 합 니 다.
# mysqldump --all-databases --user=root --password --master-data > masterdatabase.sql

This creates a file called masterdatabase.sql in your current working directory.
이것 은 현재 작업 디 렉 터 리 에 masterdatabase. sql 이라는 파일 을 만 들 것 입 니 다.
Again login to MySQL as root user:
MySQL 에 루트 사용자 로 다시 로그 인:
mysql -u root -p

And, unlock the tables:
그리고 잠 금 해제 표:
MariaDB [(none)]> UNLOCK TABLES;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> quit
Bye

Now Copy the masterdatabase.sql file to your Slave server.
현재 masterdatabase. sql 파일 을 종속 서버 로 복사 합 니 다.
So the command will be:
따라서 명령 은:
scp masterdatabase.sql [email protected]:/home

Please recall that 173.82.94.57 is our MariaDB slave server.
173.82.94.57 은 저희 MariaDB 가 서버 에서
STEP 4: 역 에서 MariaDB 설정 (Step 4: Configuring MariaDB Slave)
Now it’s time to configure the MariaDB Slave node
이제 MariaDB Slave 노드 를 설정 할 때 가 됐어 요.
Edit file the /etc/my.cnf file
파일 편집 /etc/my.cnf 파일
vim /etc/my.cnf

Append the following entries under the [mysqld] section as shown
[my sqld] 부분 에 다음 항목 을 추가 합 니 다. 다음 과 같 습 니 다.
[mysqld]
server-id = 2
replicate-do-db=replica_db
[...]

Here, replica_db is the database created on the Master Server node. Also, Be mindful to use different server-id for both master and slave servers. In this case, the server-id is 2
여기 있 습 니 다. replicadb 는 메 인 서버 노드 에 만 든 데이터베이스 입 니 다.또한 메 인 서버 와 서버 에서 서로 다른 서버 ID 를 사용 하 는 것 에 주의 하 시기 바 랍 니 다.이 경우 서버 ID 는 2
Save and exit the file.
파일 을 저장 하고 종료 합 니 다.
Next, we are going to import the master database as shown
다음은 master 데이터 베 이 스 를 가 져 올 것 입 니 다. 다음 과 같 습 니 다.
mysql -u root -p < /home/masterdatabase.sql

Bear in mind that we had already copied the masterdatabase.sql file from the master server to/home/directory of the slave server.
마스터 데이터베이스. sql 파일 을 메 인 서버 에서 서버/홈/디 렉 터 리 로 복 사 했 음 을 기억 하 십시오.
Restart MariaDB service to effect the changes.
변경 사항 을 적용 하기 위해 MariaDB 서 비 스 를 다시 시작 합 니 다.
systemctl restart mariadb

Now login into MariaDB as the root user
현재 루트 사용자 로 MariaDB 에 로그 인 합 니 다.
mysql -u root -p

Stop the Slave. Instruct the Slave where to find the Master Log file and start the Slave.
역 에서 멈추다.종속 서버 가 홈 로그 파일 을 어디서 찾 고 종속 서버 를 시작 하 는 지 표시 합 니 다.
MariaDB [(none)]> STOP SLAVE;

MariaDB [(none)]> CHANGE MASTER TO MASTER_HOST='173.82.2.236', MASTER_USER='slave_user', MASTER_PASSWORD='P@ssword100', MASTER_LOG_FILE='mariadb-bin.000001', MASTER_LOG_POS=473;
Query OK, 0 rows affected (0.03 sec)

MariaDB [(none)]> STOP SLAVE;
Query OK, 0 rows affected (0.01 sec)

Next, run the command below to show the status of the Slave
다음 명령 을 실행 하여 역 에서 의 상 태 를 표시 합 니 다.
MariaDB [(none)]> SHOW SLAVE STATUS\G;

MariaDB 복사 테스트 (MariaDB 복제 테스트)
주인 측: (Master 측:)
Head out to your MariaDB master server and log in to MariaDB instance using the command as shown
MariaDB 홈 서버 로 이동 하여 다음 명령 을 사용 하여 MariaDB 에 로그 인 합 니 다.
mysql -u root -p

Create the database replica_db
데이터베이스 만 들 기 replica_dbNext, create a table Persons
다음 표 만 들 기 PersonsAdd a record as shown
그림 에서 보 듯 이 기록 하 나 를 추가 합 니 다.
Finally, Display the table
마지막 으로 표 보이 기
측면 에서: (Slave side:)
Now , log in to MariaDB database instance at the Slave server
현재 소속 서버 에서 MariaDB 데이터베이스 인 스 턴 스 를 로그 인 합 니 다.
mysql -u root -p

Next, display the databases using the command below
다음 명령 으로 데이터 베 이 스 를 표시 합 니 다.
SHOW DATABASES;

As you can see, the replica_db database is present, implying that it has been replicated !
보시 다시 피 replicatedb 데이터베이스 가 존재 합 니 다. 복사 되 었 음 을 표시 합 니 다!
Let’ go ahead and probe inside the database and check if any tables are present. Run
데이터베이스 내 부 를 계속 탐색 하고 표 가 있 는 지 확인 합 시다.뛰다.
use replica_db;

Then
그리고
show tables;

As you can see, the table Persons created earlier in the Master node is present. Perfect!
보시 다시 피 이전에 '주' 노드 에서 만 든 '인원' 표 가 존재 합 니 다.완벽 하 다
Let’s reveal its records to be dead sure that our database has been fully replicated
우리 의 데이터 베 이 스 를 완전히 복사 할 수 있 도록 그것 의 기록 을 밝 혀 봅 시다.
select *from replica_db;

As observed, all the contents have been replicated and are accurate. Way to go!
관찰 한 바 와 같이 모든 내용 이 복사 되 고 정확 하 다.갈 길!
In this article, you have learned how to How to set up MariaDB Master-Slave replication on CentOS 7. Give it a try and feel free to weigh in.
본 논문 에서 CentOS 7 에 MariaDB 주종 복 제 를 설정 하 는 방법 을 배 웠 습 니 다.한번 해 보 세 요.
번역https://www.journaldev.com/29314/set-up-mariadb-master-slave-replication-centos

좋은 웹페이지 즐겨찾기