mongodb

1,mongodb数据库进行重启

/etc/init.d/mongodb restart

2,mongdb数据库连接

MongoClient(mongodb://root:[email protected]/news)

mongo 192.168.1.200:27017/test -u user -p password

3,创建数据库用户

db.createUser({user:'user',pwd:'111111',roles:["readWrite"]})

4,删除数据库

db.dropDatabase()

5,查看collection

show tables

6,删除collection

db.collection.drop() 其中collection为数据库中collection的名字

你可能感兴趣的:(mongodb)