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
实战2:使用selenium爬取淘宝数据,保存在mongodb 配置文件 MONGO_URL = 'localhost' MONGO_DB = 'taobao' MONGO_TABLE = 'yintiao' 爬虫文件 from selenium import webdriver from sele ...
分类:
数据库 时间:
2021-01-11 10:47:01
阅读次数:
0
vim mongodb.yaml apiVersion: apps/v1 kind: Deployment metadata: name: mongodb labels: app: mongodb spec: replicas: 1 selector: matchLabels: app: mongo ...
分类:
数据库 时间:
2021-01-07 11:58:16
阅读次数:
0
MongoDB语法与现有关系型数据库SQL语法比较 MongoDB语法 MySql语法 db.test.find({'name':'foobar'})<==> select * from test where name='foobar' db.test.find() <==> select *fro ...
分类:
数据库 时间:
2021-01-05 11:00:27
阅读次数:
0
今天执行:net start MongoDB 开启服务时,出现服务名无效问题。 百度搜了一些文章,终于找到了解决办法: 1、新建db文件夹和log文件夹 2、新建mongo.config文件 dbpath=D:\Program Files\MongoDB\Server\4.2\data\db log ...
分类:
数据库 时间:
2021-01-04 11:27:12
阅读次数:
0
DBA基础 一、数据库 1、概述 数据库:存储数据的仓库 数据库服务器:通过一定的存储方式、规则来进行管理数据的服务。 一切皆数据 2、分类 关系型:Oracle、Mysql、SQL-Server、DB2、MariaDB 非关系型:Redis、Memcached、MongoDB、CouchDB、Ne ...
分类:
数据库 时间:
2021-01-04 11:00:55
阅读次数:
0
1.修改mongodb配置文件之前,提前将配置文件备份,mongodb配置文件对格式有要求,修改容易无法重启服务。 2.找到mongodb.cfg文件编辑找到 # wiredTiger: 去掉# 3.修改 wiredTiger: engineConfig: cacheSizeGB: 0.5 4.注意 ...
分类:
数据库 时间:
2021-01-01 12:53:44
阅读次数:
0