这里写自定义目录标题
安装mongo:
下载安装包:
wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel80-7.0.11.tgz
wget https://downloads.mongodb.com/compass/mongosh-2.2.9-linux-x64.tgz
解压:
tar -zvxf mongodb-linux-x86_64-rhel80-7.0.11.tgz -C /data/server/
tar -zvxf mongosh-2.2.9-linux-x64.tgz -C /data/server/
创建启动配置文件:
systemLog:
# MongoDB发送所有日志输出的目标指定为文件
destination: file
# mongod或mongos应向其发送所有诊断日志记录信息的日志文件的路径
path: "/data/server/mongodb/logs/mongod.log"
# 当mongos或mongod实例重新启动时,mongos或mongod会将新条目附加到现有日志文件的末尾。
logAppend: true
storage:
# mongod实例存储其数据的目录。storage.dbPath设置仅适用于mongod。
# The directory where the mongod instance stores its data.Default Value is "/data/db".
dbPath: "/data/server/mongodb/data"
processManagement:
#启用在后台运行mongos或mongod进程的守护进程模式。
fork: true
net:
# 服务实例绑定的IP,默认是localhost(192.168.157.140:局域网IP)
bindIp: localhost,127.0.0.1
# bindIp
#绑定的端口,默认是27017
port: 27018
登录mongo:
bin/mongosh --port 27018
# 设置超级管理员
db.createUser({user:"root",pwd:"22s2",roles:["root"]})
授权登录:
mongosh --port 27018 -u root -p 22s2
创建数据库:
use mydb
创建用户并指定权限
db.createUser({user: "dw",pwd: "dw",roles: [ { role: "dbOwner", db: "mydb" } ]})
导出数据
mongodump --host 127.0.0.1 --port 27017 --username dw--password dw -d mydb -o /data/back
导入数据
mongorestore --host 127.0.0.1 --port 27017 --username dw --password dw -d dw2 --dir /data/back/dw