We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在windows安装后,是不会自动配置环境变量,所以需要自己配置
mongod --dbpath ../data/db # 这里的../data/db是一个相对路径,这个参数是将这个文件夹作为数据库文件存储的文件夹
mongo
mongorestore -h <主机名><:端口> -d 数据库名(这是你要恢复的数据库的名称)<path> # 这里的path是备份的文件夹的路径 # 例如 mongorestore -h localhost:27017 -d elm C:\Users\PC\Downloads\elm
--host <:port>, -h <:port>: MongoDB所在服务器地址,默认为: localhost:27017 --db , -d : 需要恢复的数据库实例,例如:test,当然这个名称也可以和备份时候的不一样,比如test2 --drop: 恢复的时候,先删除当前数据,然后恢复备份的数据。就是说,恢复后,备份后添加修改的数据都会被删除,慎用哦! <path>: mongorestore 最后的一个参数,设置备份数据所在位置,例如:c:\data\dump\test。 你不能同时指定 <path> 和 --dir 选项,--dir也可以设置备份目录。 --dir: 指定备份的目录 你不能同时指定 <path> 和 --dir 选项。
use elm # 这里是切换到elm数据库下
db.createUser({ user: "用户名", pwd: "密码", roles: [ { role: "readWrite", db: "数据库名" } ] }
db.auth("用户名","密码") # 检查是否创建成功了,如果创建成功了,会返回信息1或者{ok:1}
'use strict'; module.exports = { port: parseInt(process.env.PORT, 10) || 8001, url: 'mongodb://localhost:27017/elm', session: { name: '用户名', secret: '密码', cookie: { httpOnly: true, secure: false, maxAge: 365 * 24 * 60 * 60 * 1000, } } }
The text was updated successfully, but these errors were encountered:
如果安装完mongodb,还是要另外安装mongodb Tools的,在官网另外下载,同样傻瓜式安装,可以更改路径,然后自己配置环境,才能使用mongorestore等一系列功能
Sorry, something went wrong.
黑肉!啃了半天官方文档,发现有人写教程
No branches or pull requests
mongod --dbpath ../data/db # 这里的../data/db是一个相对路径,这个参数是将这个文件夹作为数据库文件存储的文件夹
use elm # 这里是切换到elm数据库下
The text was updated successfully, but these errors were encountered: