MongoDB基本操作

从安装到导入数据

MongoDB基本操作

这篇文章记录了MongoDB从安装到创建第一个数据集合的过程,备忘。

MongoDB版本:4.4

安装

相对简单,按照官方给出的指导一步一步来即可。

Install MongoDB

允许远程访问

修改配置文件:

sudo vim /etc/mongod.conf

设定允许监听的IP地址:

# network interfaces
net:
  port: 27017
  bindIp: 0.0.0.0

重启服务:

sudo systemctl restart mongod

创建用户

以测试为目的时,创建一个高权限用户:

use admin
db.createUser({ user: "mongoadmin" , pwd: "mongoadmin", roles: ["userAdminAnyDatabase", "dbAdminAnyDatabase", "readWriteAnyDatabase"]})
⚠️
这样做很危险,请三思。

远程访问

最简单的做法是使用MongoDB compass。

MongoDB Compass
Explore and interact with your data using Compass, the GUI for MongoDB. Query, modify, delete, and more — all from one interface.

安装完成后填写地址、端口、用户名与密码即可连接。

恢复数据

连接后新建一个db,然后建立一个collection,之后便可以导入数据。

完成。