标签:
1,ubuntu monogdb 安装配置
2,ubuntu jdk1.7,tomcat7安装
3,ubuntu LAMP部署
4,mongodb 远程热备份及恢复
使用自带的mongodump和mongorestore工具
mongodump -h dbhost -d dbname -o dbdirectory
mongorestore -h dbhost -d dbname --directoryperdb dbdirectory
5,mongodb 开启auth
编辑/etc/mongodb.conf uncomment auth = yes
创建用户
db.addUser("Ruiy","456");
db.auth("Ruiy","456");
标签:
原文地址:http://www.cnblogs.com/ruiy/p/4191384.html