当我有 ip、用户名和密码时如何连接到 mongodb
我有mongodb的IP地址,用户名和密码。如何访问数据库和列表数据?我了解 mysql,但这对我来说是西班牙村。有人可以帮助我吗?
I have ip address of mongodb, user name and password. How to access to db and list data? I know mysql but this is Spain village to me. Can somebody help me ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下方式连接:
但这取决于您使用的驱动程序,请参阅 上的 MongoDB 文档连接了解更多详细信息。
You can connect using:
But that would depend on what driver you are using, please, refer to MongoDB Docs on Connections for more details.
如果您想使用命令行,请执行以下操作:
path_to_your_local_mongo_installation/bin/mongo ip_address -u username -p
将ip_address
替换为您拥有的 IP 地址和username
是用户名。然后,要查看数据库列表,请使用:
show dbs
要选择数据库,请使用:
use dbname
假设 dbname 是数据库的名称要显示该数据库中的集合,使用:
显示集合
If you want to use command line, do this:
path_to_your_local_mongo_installation/bin/mongo ip_address -u username -p
replacingip_address
with the IP address you have, andusername
is the username.Then, to see the list of databases use:
show dbs
To pick a database, use:
use dbname
assuming dbname is the name of the databaseTo show collections within that database, use:
show collections