When you use mongoDB started as "mongod --dbpath ../../data/db --auth", and you use the existed use in your database, but you will get error like this "purchase_user@purchase failed. MongoDB-CR Authentication failed. Missing credentials in…
原文地址:MySQL 5.6主从Slave_IO_Running:Connecting/error connecting to master *- retry 作者:忆雨林枫 刚配置的MySQL主从,在从机上看到 点击(此处)折叠或打开 mysql> SHOW slave STATUS \\G *************************** 1. row *************************** Slave_IO_State: Connecting to master Ma…
启动mongodb没有使用通道控制 mongod --port 27017 --dbpath /data/db1 连接mongo mongo --port 27017 创建用户 use admin db.createUser( { user: "myUserAdmin", pwd: "abc123", roles: [ { role: "userAdminAnyDatabase", db: "admin" } ] } ) 开启…
刚配置的MySQL主从,在从机上看到 点击(此处)折叠或打开 mysql> SHOW slave STATUS \\G *************************** 1. row *************************** Slave_IO_State: Connecting to master Master_Host: 172.17.210.199 Master_User: my Master_Port: 3306 Connect_Retry: 60 Master_Log…
更新操作: db.users.update({'currentVersion':3},{$set:{'currentVersion':5}}) 首先安装下载(略过) mongod 启动服务,有多重启动方式,另外可配置各种启动参数  mongod --config "D:/mongodb/server/mongo.cfg"  mongod --dbpath "D:\mongodb\server\data\db" show dbs use admin show tabl…
目录 裸奔有多危险 mongoDB修改默认端口号 关闭MongoDB 重启MongoDB 设置密码 吹个牛B,自己的MongoDB裸奔了快半年,从未遭受黑客攻击.也不知道是自己运气好,还是黑客对我的乞丐版服务器看不上眼.不过既然知道了数据库裸奔的危险性,就要给它上把锁.然而上锁对我这种刻意回避数据库知识的人来说,也实在不是一件容易的事. 在学习上锁的过程中,看了好些文章.为了防止大家看我这篇没懂后还有的看,先给出参考文档: https://www.cnblogs.com/chunlei36/p/…
我个人用docker搭建了一套日志分析平台:ELK+Filebeat 在正常跑了半个多月之后,Kibana刷新日志时突然发现日志不在更新了,停在某个时刻,就再也没有新log. 首先我查看了elk,log都是正常的,没有什么问题.然后我到filebeat上,看到了如下的log: 也就是说filebeat无法连接往logstash端口发送数据了. 以下整理了我排查的过程,自己作为一个总结,同时也希望能给初学者一些参考. 一.telnet查看网络通不通 # telnet ip 5044 是相通的.  …
Run the following command first to start the mongo server mongod run --config /usr/local/etc/mongod.conf Assuming you installed mongo using Brew. More information about the mongod process here EDIT Try to repair mongo using : mongod --repair Seems to…
http://blog.0x01.site/2017/01/13/MongoDB%E7%9A%84Replica-Set%E4%BB%A5%E5%8F%8AAuth%E7%9A%84%E9%85%8D%E7%BD%AE/ Python 运维   MongoDB事件出现后,公司要给MongoDB加Auth,于是我就调研了一番. 现在MongoDB在生产中一般使用Replica Set的方式部署,如果一台宕机,另外一台Secondary会变成Master继续服务,提高可用性. 使用docker搭个集…
      创建超级管理员(root)和普通用户(gxpt) #创建超级管理员(root) RS1:PRIMARY> use admin RS1:PRIMARY> db.createUser(    { user: "root",      pwd: "root",      roles: [ { role: "root", db: "admin" } ]    }  );    root用户所属admin数据库…