摘要: ################# 重定向输入mongo脚本: #! /bin/bash mongo --username root --password 123456 --host 10.10.10.10 --port 27017 --authenticationDatabase admin << 阅读全文
posted @ 2021-01-22 17:31 igoodful 阅读(464) 评论(0) 推荐(0) 编辑
摘要: ################################### 返回正在执行且运行时间超过10s的连接信息: db.currentOp({"secs_running": {"$gt": 10},"active": true}) 返回去掉系统线程的连接: db.currentOp({ "act 阅读全文
posted @ 2021-01-22 17:10 igoodful 阅读(847) 评论(0) 推荐(0) 编辑
摘要: ################################## 一、插入数据insert : 插入一条数据: db.products.insert( { _id: 10, item: "box", qty: 20 } ) 插入多条数据: db.products.insert( [ { _id: 阅读全文
posted @ 2021-01-22 12:04 igoodful 阅读(190) 评论(0) 推荐(0) 编辑