zoukankan      html  css  js  c++  java
  • Mongodb 设置密码

    Mongodb 配置用户密码:
    
    首先创建admin数据库的用户密码
    
    再创建pics的用户名密码
    
    > show databases;
    admin	0.203125GB
    local	0.078125GB
    pics	0.953125GB
    test	(empty)
    > use admin;
    switched to db admin
    > db.addUser('pics','xxx');
    {
    	"_id" : ObjectId("56aadcf700e771cecded4a57"),
    	"user" : "pics",
    	"readOnly" : false,
    	"pwd" : "626c9a7149b1a2708fd5a35a1a7f5fd3"
    	
    	
    重启Mongdodb
    
    在没有加--auth的情况下 可以正常访问admin喜爱默认的两个表。
    
    启用的时候需要加--auth 
     /usr/local/mongodb/bin/mongod --config /usr/local/mongodb/bin/mongodb.conf --auth
     
     
    redis01:/root# mongo
    MongoDB shell version: 2.4.9
    connecting to: test
    > use admin;
    switched to db admin
    > show tables;
    Thu Apr 21 15:45:19.616 error: {
    	"$err" : "not authorized for query on admin.system.namespaces",
    	"code" : 16550
    } at src/mongo/shell/query.js:128
    
    > use pics;
    switched to db pics
    > show tables;
    Thu Apr 21 15:45:31.008 error: {
    	"$err" : "not authorized for query on pics.system.namespaces",
    	"code" : 16550
    } at src/mongo/shell/query.js:128
    
    
    进入MongoDB:
    
    redis01:/root# mongo
    MongoDB shell version: 2.4.9
    connecting to: test
    > use admin;
    switched to db admin
    > show tables;
    Thu Apr 21 16:16:03.812 error: {
    	"$err" : "not authorized for query on admin.system.namespaces",
    	"code" : 16550
    } at src/mongo/shell/query.js:128
    
    
    > db.auth('pics','jh7y,xxx') ;
    1
    > show tables;
    system.indexes
    system.users
    
    http://114.55.x.xx:8080/pics/weixin_qrcode_b_YH.jpg
    
    
    http://192.168.32.34:8080/pics/q.jpg
    
    http://192.168.32.34/pics/20160421151012b4509158cc6e4136a5af52be573f9b6a
    
    nginx-gridfs 配置用户名密码:
    
       location /pics/ {
                     gridfs 
                      pics 
                      field=filename type=string
                       user=pics
                       pass=jh7y,xxx;
    		   mongo 192.168.32.34:27017;
           }
    
    redis01:/root# mongofiles -u "pics" -p "xx" -h 192.168.32.34 list -db pics

  • 相关阅读:
    求Computational problems associated with Racah algebra
    病理情形
    扫描算法求最大子序列的一次简单非严格证明
    分治法求最大子序列,关于复杂度的一次弱推导
    VFP_等待 rar 命令结束
    Windows_解决win7开机画面变成vista画面的方法
    C#_WinForm的等待窗口
    C#_控件的缩写大全
    SQL Server 2008_基本安装说明
    C#_获取 SQL服务器列表
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13350848.html
Copyright © 2011-2022 走看看