몽고디비 서버 시작

 

% brew services start mongodb-community@4.4

==> Successfully started `mongodb-community` (label: homebrew.mxcl.mongodb-community)

 

> use local
switched to db local
> db.users.insert({id:'test006',password:'12345',name:'엠케이'})
WriteResult({ "nInserted" : 1 })
> db.users.find({id:'test006'}).pretty()
{
	"_id" : ObjectId("6076dc9b9e3cedcde7d6e39b"),
	"id" : "test006",
	"password" : "12345",
	"name" : "엠케이"
}
> 

 

몽고디비 서버 중지

 

% brew services stop mongodb-community@4.4

+ Recent posts