Redis - Master/Slave Replication 연동하기
Linux Server/Redis
2022. 11. 30. 09:00
Redis - Master/Slave Replication 연동하기
이번 포스팅에서는 Redis Master Server와 Redis Slave Server 연동방법에 대해서 알아보도록 하겠습니다.
Redis 이전글 |
https://server-talk.tistory.com/471 - redis - In-Memory - 알아보기
https://server-talk.tistory.com/472 - Redis - 서버 설치 및 기본설정 알아보기
https://server-talk.tistory.com/473 - Redis - Redis-cli 기본 사용법
https://server-talk.tistory.com/474 - Redis - Redis Desktop Manager Tool
https://server-talk.tistory.com/475 - phpredis 설치 알아보기
https://server-talk.tistory.com/496 - Redis - Replication(복제) 란?
https://server-talk.tistory.com/499 - Redis - Replication 동기화 작동 방식 알아보기
Redis Master Server와 Redis Slave Server 설정정보확인 |
* Redis Master Server 정보 IP : 192.168.0.109 Port : 6379 password : server |
* Redis Slave Server 정보 IP : 192.168.0.130 Port : 6390 password : talk |
Redis Master Server와 Redis Slave Server 연동설정 |
1. Redis Slave 서버 - Master 서버의 IP, Port 설정하기
사용법 : replicaof <masterip> <masterport>
replicaof 192.168.0.109 6379
2. Redis Slave Server - Master 서버의 패스워드 설정하기
사용법 : masterauth <master-password>
masterauth server