Reference Guide
Table Of Contents
- Dell Wyse Management Suite 버전 3.x 고가용성 가이드
- 목차
- 소개
- 고가용성 아키텍처
- Windows Server 2012 R2/2016/2019의 고가용성
- Windows Server 2012 R2/2016/2019에서 고가용성 달성
- MySQL InnoDB에 대한 고가용성 달성
- MongoDB에서 고가용성 확보
- Teradici 장치에 대한 고가용성 달성
- Windows Server 2012 R2/2016/2019에 Wyse Management Suite 설치
- 설치 후 확인
- Wyse Management Suite 버전 1.3을 1.4로 업그레이드
- Wyse Management Suite 버전 1.4/1.4.1/2.x/2.1에서 Wyse Management Suite 버전 3.x(으)로 업그레이드
- 문제 해결
그림 58 . mongod 키 파일 복사
5. 파일을 복사한 후 다음 명령을 실행하여 mongod 서비스를 중지합니다.
net stop mongodb
6. 다음 명령을 실행하여 mongod 서비스를 시작합니다.
net start mongodb
7. MongoDB 서버의 모든 세 노드에서 1~6단계를 반복합니다.
8. MongoDB 클러스터에서 DBadmin 사용자로 로그인하고 다음 명령을 실행하여 기본 노드에 대한 복제를 시작합니다.
rs.initiate();
C:\Mongo\bin>mongo.exe -u root -p x` admin
MongoDB shell version v4.2.1
connecting to: mongodb://127.0.0.1:27017/admin?
compressors=disabled&gssapiServiceName=mongodb
Implicit session: session { "id" : UUID("952f322c-1eb4-46c4-9b5e-bd536e2c1e7e") }
MongoDB server version: 4.2.1
MongoDB Enterprise > use admin
switched to db admin
MongoDB Enterprise >
MongoDB Enterprise >
MongoDB Enterprise > rs.initiate();
{
"info2" : "no configuration specified. Using a default configuration for the set",
"me" : "10.150.132.37:27017",
"ok" : 1
}
9. 다음 명령을 실행하여 복제 상태를 확인합니다.
rs.status();
62 MongoDB에서 고가용성 확보