1、需要在安装目录的bin目录下建立配置文件 mongodb.conf #数据路径 dbpadth=/opt/sys/mongodb/db/mongo #日志输出文件路径 logpath=/opt/sys/mongodb/log/mongodb.log #错误日志采用追加模式 logappend=t ...
分类:
数据库 时间:
2021-01-20 12:03:45
阅读次数:
0
版本要求>3.2 db.tablename.aggregate( [ { $indexStats: { } } ] ) 官网地址:https://docs.mongodb.com/manual/reference/operator/aggregation/indexStats/ ...
分类:
数据库 时间:
2021-01-20 11:52:58
阅读次数:
0
背景 发现有两个mongodb环境的数据库表索引不一致,另一个数据库有索引缺失,需要将一个数据库里的所有表索引导入到另一个数据库 也可用于单独备份数据库所有表的索引 写mongo shell的js脚本可参考官方文档https://docs.mongodb.com/manual/tutorial/wr ...
分类:
数据库 时间:
2021-01-18 10:35:56
阅读次数:
0
dbpath=/usr/local/mongodb304/data#数据库日志存放目录logpath=/usr/local/mongodb304/logs/mongodb.log?#以追加的方式记录日志logappend = true#端口号 默认为27017port=27017?#以后台方式运行进 ...
分类:
其他好文 时间:
2021-01-16 11:52:11
阅读次数:
0
Ef Core 快速开始实例 创建一个空的web api 项目 添加 Pomelo.EntityFrameworkCore.Mysql 的nuget包引用 创建实体 创建DbContext 配置连接字符串并且注入DbContext 使用DbContext完成数据查询与插入 #步骤一 创建 netco ...
分类:
Web程序 时间:
2021-01-15 11:47:25
阅读次数:
0
学习自:https://www.cnblogs.com/blackmanzhang/p/12677538.html [root@vmcentos7-1 ~]#vim /etc/yum.repos.d/mongodb-org-4.2.repo [mongodb-org-4.2]name=MongoDB ...
分类:
数据库 时间:
2021-01-14 10:53:10
阅读次数:
0
cd /optwget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-4.4.3.tgztar -zxvf mongodb-linux-x86_64-rhel70-4.4.3.tgzmkdir /opt/mongodb && ...
分类:
数据库 时间:
2021-01-14 10:46:20
阅读次数:
0
一.安装MongoDB (1)redhat或centos6.2以上系统 (2)系统开发包完整 (3)ip地址和hosts文件解析正常 (4)iptables防火墙&SElinux关闭 (5)关闭大页内存机制 ############################################## ...
分类:
数据库 时间:
2021-01-13 11:29:01
阅读次数:
0
开启慢查询Profiling Profiling级别说明 0:关闭,不收集任何数据。 1:收集慢查询数据,默认是100毫秒。 2:收集所有数据 1、通过修改配置文件开启Profiling 修改启动mongo.conf,插入以下代码 #开启慢查询,200毫秒的记录 profile = 1 slowms ...
分类:
数据库 时间:
2021-01-13 11:20:42
阅读次数:
0
Ubuntu 18.04 (Bionic) 安装 MongoDB (Install MongoDB Community Edition on Ubuntu) 查看 Ubuntu 版本 lsb_release -a Distributor ID: Ubuntu Description: Ubuntu ...
分类:
数据库 时间:
2021-01-12 11:08:09
阅读次数:
0