db.dropUser()
이 페이지의 내용
정의
db.dropUser(username, writeConcern)
현재 데이터베이스에서 사용자를 제거합니다.
중요
Mongo쉬 방법
이 페이지에서는
mongosh
메서드를 설명합니다. 이는 데이터베이스 명령 또는 Node.js와 같은 언어별 드라이버에 대한 설명서가 아닙니다.데이터베이스 명령의 경우
dropUser
명령을 참조하세요.MongoDB API 드라이버의 경우 언어별 MongoDB 드라이버 설명서를 참조하세요.
db.dropUser()
메서드는 다음 인수를 사용합니다.Parameter유형설명username
문자열데이터베이스에서 제거할 사용자의 이름입니다.writeConcern
문서db.dropUser()
메서드는dropUser
명령을 래핑합니다.userAdminAnyDatabase
역할이 있는 사용자를 제거하기 전에 사용자 관리 권한이 있는 다른 사용자가 한 명 이상 있는지 확인하세요.
행동
복제본 세트
복제본 세트에서 실행할 경우, db.dropUser()
는 기본값으로 "majority"
쓰기 고려(write concern)를 사용하여 실행됩니다.
필요한 액세스 권한
예시
다음 db.dropUser()
연산은 products
데이터베이스에서 reportUser1
사용자를 제거합니다.
use products db.dropUser("reportUser1", {w: "majority", wtimeout: 5000})