mongodb数据库怎么连接[mongodb教程]

python

MongoDB连接命令格式

使用用户名和密码连接到MongoDB服务器,必须使用 'username:password@hostname/dbname' 格式,'username'为用户名,'password' 为密码。

使用用户名和密码连接登陆到默认数据库:

$ ./mongo

MongoDB shell version: 4.0.9

connecting to: test

使用用户 admin 使用密码 123456 连接到本地的 MongoDB 服务上。输出结果如下所示:

> mongodb://admin:123456@localhost/

...

使用用户名和密码连接登陆到指定数据库,格式如下:

mongodb://admin:123456@localhost/test

更多学习内容,请点击Python教程!

以上是 mongodb数据库怎么连接[mongodb教程] 的全部内容, 来源链接: utcz.com/z/525942.html

回到顶部