mongodb client

来源:互联网 发布:淘宝连接转口令 编辑:程序博客网 时间:2024/05/29 10:56
mongo <hostname>:<port>

(this will open the mongo client)

you can then connect to the db using:

use <dbname>

and then authenticate using:

db.auth('<username>','<password>')


via: https://www.quora.com/Is-there-a-MongoDB-client-application-for-Linux

0 0