/etc/mongod.conf에서 security.authorization이 true를 false로 변경 후 사용자 계정 추가 및 변경 sudo service mongod restart mongo --port 27818 --authenticationDatabase "admin" -u "admin" -p use admin show users # 사용자 추가 db.createUser({ user: 'root', pwd: 'kobic!@#$', roles: ['root'] }) # 사용자 권한 변경 및 추가 db.grantRolesToUser('cloud_team', [{ role: 'root', db: 'admin' }]) 추가 변경 작업 이후 주석 처리한 security.authorization 수정
mongoDB PSA 구성으로 arbiter 추가 시 다음과 같은 장애 발생 MongoServerError: Reconfig attempted to install a config that would change the implicit default write concern. Use the setDefaultRWConcern command to set a cluster-wide write concern and try the reconfig again. 장애 처리 방법 다음 명령어 실행 후 arbiter 노드 추가 명령어 실행 db.adminCommand({ setDefaultRWConcern : 1, defaultWriteConcern: { w: 1 }, }) arbiter 노드 추가 명령어 rs.addA..