노출되는 이미지가 불편하시겠지만 양해를 구합니다. 노출, 클릭등에 관한 자료로 활용 중입니다.
사용자 계정 관리

몽고DB를 시동하고 나서 가장 먼저 해야 할 일은 데이터베이스에 접근할 수 있도록 사용자를 추가하는 것이다.


1) 계정 생성
	use test
	db.createUser( {use: "testUser", pwd: "test", 
	roles: ["readWrite", "dbAdmin"] } )
2) 계정 삭제
	use test
	db.dropUser("testUser")
3) 계정 목록
	use admin
	show users

* 사용자 계정은 각 데이터베이스의 db.system.users 컬렉션에 저장된다.
* User 객체는 id, user, pwd, roles등을 갖는다.



'DBMS, noSQL > mongoDB' 카테고리의 다른 글

Java Code for mongoDB Query  (0) 2018.10.30
Robo 3T(Robomongo) 폰트 변경  (0) 2018.10.24
CentOS에 MongoDB 64bit 설치하기  (0) 2017.02.07
블로그 이미지

StartGuide

I want to share the basic to programming of each category and how to solve the error. This basic instruction can be extended further. And I have been worked in southeast Asia more than 3 years. And I want to have the chance to work another country.

,