mongodb Replica Set 구축 방법 자세히 보기
mkdir -p /data/master
mkdir -p /data/slaver
mkdir -p /data/arbiter
효과:데이터 폴더는 arbiter master slaver 세 개의 폴더를 포함합니다
2. 로그 저장 파일 만들기
vi /log/master.log
vi /log/slaver.log
vi /log/arbiter.log
효과:log 폴더는 master를 포함합니다.log slaver.log arbiter.log 세 개의 파일 (주의, 데이터 폴더와 론 폴더는 모두 상위 폴더가 없습니다. 서로 다른 이름의 다른 위치의 폴더를 만들 수 있습니다. 주의 경로는 아래의 프로필과 일치하면 됩니다)
3. 프로필 만들기
첫 번째 단계에서 만든 세 파일에서 폴더의 이름을 만듭니다.conf 접두사 파일, 즉:master 폴더에master가 있어야 합니다.conf 파일,slaver 폴더에slaver가 있어야 합니다.conf 파일,arbiter 폴더에arbiter가 있어야 합니다.conf 파일.
각 구성 파일의 내용은 다음과 같습니다.
master.conf
dbpath =/data/master
logpath = /log/master.log
pidfilepath =/data/ master.pid
directoryperdb = true
logappend = true
replSet = away
bind_ip = localhost
port = 27018
#fork = true
slaver.conf
dbpath =/data/slaver
logpath =/log/slaver.log
pidfilepath = /data/slaver.pid
directoryperdb = true
logappend = true
replSet = away
bind_ip = localhost
port = 27019
#fork = true
arbiter.conf
dbpath = /data/arbiter
logpath = /log/arbiter.log
pidfilepath = arbiter.pid
directoryperdb = true
logappend = true
replSet = away
bind_ip = localhost
port = 27020
#fork = true
replSet、bind_ip,port 세 가지 속성은 자신의 상황에 따라 변경할 수 있습니다.속성은 다음과 같이 요약됩니다.
dbpath: 데이터 저장 디렉터리
logpath: 로그 저장 경로
pidfilepath: 프로세스 파일,mongodb를 멈추기 쉽습니다.
directoryperdb: 모든 데이터베이스에 데이터베이스 이름에 따라 폴더 저장
logappend: 로그를 추가로 기록합니다.
replSet: replica set 이름
bind_ip:mongodb가 연결된 ip 주소
port:mongodb 프로세스에 사용되는 포트 번호, 기본 27017
oplogSize:mongodb 작업 로그 파일의 최대 크기입니다.단위는 Mb, 기본값은 하드 드라이브 여유 공간의 5%
fork: 백그라운드로 프로세스 실행
noprealloc: 스토리지를 사전 할당하지 않음
4. mongod 프로그램 시작
mongod --config < >
예:
lhd@lhd:~$ sudo mongod --config /data/master/master.conf
[sudo] lhd :
비밀번호를 입력하면 됩니다. 이 출력은 시작 권한을 주의해야 합니다.5. 주종 구성
1).mongo 클라이언트 시작:
mongo localhost:27018
실행 결과는 다음과 같습니다.mongo localhost:27018
MongoDB shell version v4.4.2
connecting to: mongodb://localhost:27018/test?compressors=disabled&gssapiServiceName=mongodb
Implicit session: session { "id": UUID("0078e025-5485-4967-85c8-160755ac3d58") }
MongoDB server version: 4.4.2
---
The server generated these startup warnings when booting:
2020-12-22T09:39:40.347+08:00: Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem
2020-12-22T09:39:41.093+08:00: Access control is not enabled for the database. Read and write access to data and configuration is unrestricted
2020-12-22T09:39:41.094+08:00: You are running this process as the root user, which is not recommended
2020-12-22T09:39:41.095+08:00: Soft rlimits too low
2020-12-22T09:39:41.095+08:00: currentValue: 1024
2020-12-22T09:39:41.095+08:00: recommendedMinimum: 64000
---
---
Enable MongoDB's free cloud-based monitoring service, which will then receive and display
metrics about your deployment (disk utilization, CPU, operation statistics, etc).
The monitoring data will be available on a MongoDB website with a unique URL accessible to you
and anyone you share the URL with. MongoDB may use this information to make product
improvements and to suggest MongoDB products and deployment options to you.
To enable free monitoring, run the following command: db.enableFreeMonitoring()
To permanently disable this reminder, run the following command: db.disableFreeMonitoring()
---
2).주,종,중재점 설정
use admin
switched to db admin
zjd={_id:"one",members:[{_id:0,host:"localhost:27018",priority:2},{_id:1,host:"localhost:27019",priority:1},{_id:2,host:"localhost:27020",arbiterOnly:true}]};
zjd는 임의의 이름입니다. 몬godb의 키워드,conf,config를 사용하지 마십시오.첫 번째_id는 Replica set의 이름을 표시합니다. 이 데이터는 3단계 설정 파일의 Replica set와 일치해야 합니다. 그렇지 않으면 오류가 발생합니다.
members에 포함된 것은 모든 노드의 주소와 우선순위입니다. 우선순위가 가장 높은 것은 바로 주 노드입니다. 값이 0이면 주 노드로 선거에 참가하지 않습니다. 중재 노드에 대해 특별한 설정이 필요합니다. - arbiter Only:true.이것은 절대로 없어서는 안 된다. 그렇지 않으면 주비 모드가 효력이 발생할 수 없다.
배치의 효력 발생 시간은 서로 다른 기계의 배치에 따라 길고 짧을 수 있다. 배치가 괜찮다면 기본적으로 십여 초 안에 효력이 발생하고 어떤 배치는 1, 2분이 걸린다.
3).구성 적용
rs.initiate(zjd)
표시:
{
"operationTime" : Timestamp(0, 0),
"ok" : 0,
"errmsg" : "Rejecting initiate with a set name that differs from command line set name, initiate set name: one, command line set name: away",
"code" : 93,
"codeName" : "InvalidReplicaSetConfig",
"$clusterTime" : {
"clusterTime" : Timestamp(0, 0),
"signature" : {
"hash" : BinData(0,"AAAAAAAAAAAAAAAAAAAAAAAAAAA="),
"keyId" : NumberLong(0)
}
}
}
4).상태 보기
> rs.status()
표시:
{
"set" : "away",
"date" : ISODate("2020-12-22T02:07:27.058Z"),
"myState" : 2,
"term" : NumberLong(0),
"syncSourceHost" : "",
"syncSourceId" : -1,
"heartbeatIntervalMillis" : NumberLong(2000),
"majorityVoteCount" : 2,
"writeMajorityCount" : 2,
"votingMembersCount" : 3,
"writableVotingMembersCount" : 2,
"optimes" : {
"lastCommittedOpTime" : {
"ts" : Timestamp(0, 0),
"t" : NumberLong(-1)
},
"lastCommittedWallTime" : ISODate("1970-01-01T00:00:00Z"),
"appliedOpTime" : {
"ts" : Timestamp(1608602837, 1),
"t" : NumberLong(-1)
},
"durableOpTime" : {
"ts" : Timestamp(1608602837, 1),
"t" : NumberLong(-1)
},
"lastAppliedWallTime" : ISODate("2020-12-22T02:07:17.467Z"),
"lastDurableWallTime" : ISODate("2020-12-22T02:07:17.467Z")
},
"lastStableRecoveryTimestamp" : Timestamp(0, 0),
"members" : [
{
"_id" : 0,
"name" : "localhost:27018",
"health" : 1,
"state" : 2,
"stateStr" : "SECONDARY",
"uptime" : 1667,
"optime" : {
"ts" : Timestamp(1608602837, 1),
"t" : NumberLong(-1)
},
"optimeDate" : ISODate("2020-12-22T02:07:17Z"),
"syncSourceHost" : "",
"syncSourceId" : -1,
"infoMessage" : "Could not find member to sync from",
"configVersion" : 1,
"configTerm" : 0,
"self" : true,
"lastHeartbeatMessage" : ""
},
{
"_id" : 1,
"name" : "localhost:27019",
"health" : 1,
"state" : 2,
"stateStr" : "SECONDARY",
"uptime" : 9,
"optime" : {
"ts" : Timestamp(1608602837, 1),
"t" : NumberLong(-1)
},
"optimeDurable" : {
"ts" : Timestamp(1608602837, 1),
"t" : NumberLong(-1)
},
"optimeDate" : ISODate("2020-12-22T02:07:17Z"),
"optimeDurableDate" : ISODate("2020-12-22T02:07:17Z"),
"lastHeartbeat" : ISODate("2020-12-22T02:07:26.714Z"),
"lastHeartbeatRecv" : ISODate("2020-12-22T02:07:26.768Z"),
"pingMs" : NumberLong(0),
"lastHeartbeatMessage" : "",
"syncSourceHost" : "",
"syncSourceId" : -1,
"infoMessage" : "",
"configVersion" : 1,
"configTerm" : 0
},
{
"_id" : 2,
"name" : "localhost:27020",
"health" : 1,
"state" : 7,
"stateStr" : "ARBITER",
"uptime" : 9,
"lastHeartbeat" : ISODate("2020-12-22T02:07:26.713Z"),
"lastHeartbeatRecv" : ISODate("2020-12-22T02:07:25.991Z"),
"pingMs" : NumberLong(0),
"lastHeartbeatMessage" : "",
"syncSourceHost" : "",
"syncSourceId" : -1,
"infoMessage" : "",
"configVersion" : 1,
"configTerm" : 0
}
],
"ok" : 1,
"$clusterTime" : {
"clusterTime" : Timestamp(1608602837, 1),
"signature" : {
"hash" : BinData(0,"AAAAAAAAAAAAAAAAAAAAAAAAAAA="),
"keyId" : NumberLong(0)
}
},
"operationTime" : Timestamp(1608602837, 1)
}
구성 완료!mongodb가 Replica Set을 구축하는 방법에 관한 이 글은 여기까지 소개되었습니다. 더 많은 관련 mongodb가 Replica Set를 구축하는 내용은 저희 이전의 글을 검색하거나 아래의 관련 글을 계속 훑어보십시오. 앞으로 많은 응원 부탁드립니다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
레코드를 업데이트하고 업데이트 전에 동일한 레코드를 삭제하는 방법(nest js & mongoDB)ID로 레코드를 업데이트하고 싶지만 업데이트 전에 동일한 레코드에 이전에 저장된 데이터를 삭제하고 싶습니다. 프로세스는 무엇입니까? 컨트롤러.ts 서비스.ts 나는 이것을 해결하기 위해 이런 식으로 노력하고 있습니다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.