当我有 ip、用户名和密码时如何连接到 mongodb

发布于 2024-12-12 20:58:13 字数 73 浏览 0 评论 0原文

我有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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吲‖鸣 2024-12-19 20:58:13

您可以使用以下方式连接:

mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]

但这取决于您使用的驱动程序,请参阅 上的 MongoDB 文档连接了解更多详细信息。

You can connect using:

mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]

But that would depend on what driver you are using, please, refer to MongoDB Docs on Connections for more details.

紫﹏色ふ单纯 2024-12-19 20:58:13

如果您想使用命令行,请执行以下操作:

path_to_your_local_mongo_installation/bin/mongo ip_address -u username -pip_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 replacing ip_address with the IP address you have, and username 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 database

To show collections within that database, use:

show collections

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文