目录

如何登陆 MongoDB

命令行登陆 MongoDB 的几种方法

  1. 第一种
1
mongo --authenticationDatabase="admin" --username="root" --password='password' --port="27017"
  1. 第二种
1
mongo -u root -p

root 用户登陆,回车后输入密码。

  1. 第三种

mongo -u <user> -p <pass> --host <host> --port 27017 如:

1
mongo -u "root" -p 'password' --host '127.0.0.1' --authenticationDatabase "admin" --port 27017 
  • -u 登陆用户名
  • -p 登陆密码
  • --authenticationDatabase 用于身份认证的数据库