NOSQL -- mongoDB的了解与安装

首先看看什么是nosql:

我的理解:非关系型数据库,大多是以map形式存储,map<key,value>,适合存储,查询。redis也是nosql。

mongobd:

MongoDB 是由C++语言编写的,是一个基于分布式文件存储的开源数据库系统。

在高负载的情况下,添加更多的节点,可以保证服务器性能。

MongoDB 旨在为WEB应用提供可扩展的高性能数据存储解决方案。

MongoDB 将数据存储为一个文档,数据结构由键值(key=>value)对组成。MongoDB 文档类似于 JSON 对象。字段值可以包含其他文档,数组及文档数组。

我一般比较喜欢新鲜的东西,所以了解下mongodb。记录下

下载:

1.下载驱动:

https://www.mongodb.com/download-center#community

安装:

选则customer。-->点击next,-->finish

2.在当前目录下创建文件夹:

data

创建:mongo.config文件

3.在data目录下

创建db和log

4.在log中创建一个 mongo.log的空文本。

在mongo.config中编辑:

dbpath=D:\SoftWare\StduySoftWere\noSQL\data\db

logpath=D:\SoftWare\StduySoftWere\noSQL\data\log\mongo.log

5.使用dos命令:进入mongodb的bin下:

mongod --dbpath D:\SoftWare\StduySoftWere\noSQL\data\db

出现一下效果:

D:\SoftWare\StduySoftWere\noSQL\bin>mongod --dbpath D:\SoftWare\StduySoftWere\noSQL\data\db
2018-06-11T20:33:11.319-0700 I CONTROL [initandlisten] MongoDB starting : pid=988 port=27017 dbpath=D:\SoftWare\StduySoftWere\noSQL\data\db 64-bit host=MicroWin10-1953
2018-06-11T20:33:11.319-0700 I CONTROL [initandlisten] targetMinOS: Windows 7/Windows Server 2008 R2
2018-06-11T20:33:11.321-0700 I CONTROL [initandlisten] db version v3.6.5
2018-06-11T20:33:11.324-0700 I CONTROL [initandlisten] git version: a20ecd3e3a174162052ff99913bc2ca9a839d618
2018-06-11T20:33:11.324-0700 I CONTROL [initandlisten] OpenSSL version: OpenSSL 1.0.2o-fips 27 Mar 2018
2018-06-11T20:33:11.325-0700 I CONTROL [initandlisten] allocator: tcmalloc
2018-06-11T20:33:11.325-0700 I CONTROL [initandlisten] modules: none
2018-06-11T20:33:11.326-0700 I CONTROL [initandlisten] build environment:
2018-06-11T20:33:11.326-0700 I CONTROL [initandlisten] distmod: 2008plus-ssl
2018-06-11T20:33:11.326-0700 I CONTROL [initandlisten] distarch: x86_64
2018-06-11T20:33:11.327-0700 I CONTROL [initandlisten] target_arch: x86_64
2018-06-11T20:33:11.327-0700 I CONTROL [initandlisten] options: { storage: { dbPath: "D:\SoftWare\StduySoftWere\noSQL\data\db" } }
2018-06-11T20:33:11.328-0700 I STORAGE [initandlisten] wiredtiger_open config: create,cache_size=7611M,session_max=20000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),cache_cursors=false,log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000),statistics_log=(wait=0),verbose=(recovery_progress),
2018-06-11T20:33:11.344-0700 I STORAGE [initandlisten] WiredTiger message [1528774391:343821][988:140730764704848], txn-recover: Set global recovery timestamp: 0
2018-06-11T20:33:11.360-0700 I CONTROL [initandlisten]
2018-06-11T20:33:11.360-0700 I CONTROL [initandlisten] ** WARNING: Access control is not enabled for the database.
2018-06-11T20:33:11.361-0700 I CONTROL [initandlisten] ** Read and write access to data and configuration is unrestricted.
2018-06-11T20:33:11.361-0700 I CONTROL [initandlisten]
2018-06-11T20:33:11.361-0700 I CONTROL [initandlisten] ** WARNING: This server is bound to localhost.
2018-06-11T20:33:11.361-0700 I CONTROL [initandlisten] ** Remote systems will be unable to connect to this server.
2018-06-11T20:33:11.362-0700 I CONTROL [initandlisten] ** Start the server with --bind_ip <address> to specify which IP
2018-06-11T20:33:11.362-0700 I CONTROL [initandlisten] ** addresses it should serve responses from, or with --bind_ip_all to
2018-06-11T20:33:11.364-0700 I CONTROL [initandlisten] ** bind to all interfaces. If this behavior is desired, start the
2018-06-11T20:33:11.364-0700 I CONTROL [initandlisten] ** server with --bind_ip 127.0.0.1 to disable this warning.
2018-06-11T20:33:11.366-0700 I CONTROL [initandlisten]
2018-06-11T20:33:11.367-0700 I CONTROL [initandlisten]
2018-06-11T20:33:11.367-0700 I CONTROL [initandlisten] ** WARNING: The file system cache of this machine is configured to be greater than 40% of the total memory. This can lead to increased memory pressure and poor performance.
2018-06-11T20:33:11.367-0700 I CONTROL [initandlisten] See http://dochub.mongodb.org/core/wt-windows-system-file-cache
2018-06-11T20:33:11.368-0700 I CONTROL [initandlisten]
2018-06-12T11:33:11.369+0800 I STORAGE [initandlisten] createCollection: admin.system.version with provided UUID: 01a8af6d-02d7-4e9f-aa8c-b63f58b8a5bc
2018-06-12T11:33:11.375+0800 I COMMAND [initandlisten] setting featureCompatibilityVersion to 3.6
2018-06-12T11:33:11.379+0800 I STORAGE [initandlisten] createCollection: local.startup_log with generated UUID: b480a552-640b-471b-a869-8808a46734a2
2018-06-12T11:33:11.552+0800 I FTDC [initandlisten] Initializing full-time diagnostic data capture with directory 'D:/SoftWare/StduySoftWere/noSQL/data/db/diagnostic.data'
2018-06-12T11:33:11.556+0800 I NETWORK [initandlisten] waiting for connections on port 27017
2018-06-12T11:34:35.536+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64944 #1 (1 connection now open)
2018-06-12T11:34:35.547+0800 I NETWORK [conn1] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64944 (connection id: 1)
2018-06-12T11:34:35.547+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64945 #2 (2 connections now open)
2018-06-12T11:34:35.547+0800 I NETWORK [conn1] end connection 127.0.0.1:64944 (1 connection now open)
2018-06-12T11:34:35.548+0800 I NETWORK [conn2] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64945 (connection id: 2)
2018-06-12T11:34:35.549+0800 I NETWORK [conn2] end connection 127.0.0.1:64945 (0 connections now open)
2018-06-12T11:34:35.788+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64947 #3 (1 connection now open)
2018-06-12T11:34:35.850+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64949 #4 (2 connections now open)
2018-06-12T11:34:35.854+0800 I NETWORK [conn4] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64949 (connection id: 4)
2018-06-12T11:34:35.855+0800 I NETWORK [conn4] end connection 127.0.0.1:64949 (1 connection now open)
2018-06-12T11:34:36.000+0800 I NETWORK [conn3] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64947 (connection id: 3)
2018-06-12T11:34:36.001+0800 I NETWORK [conn3] end connection 127.0.0.1:64947 (0 connections now open)
2018-06-12T11:34:36.102+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64953 #5 (1 connection now open)
2018-06-12T11:34:36.103+0800 I NETWORK [conn5] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64953 (connection id: 5)
2018-06-12T11:34:36.103+0800 I NETWORK [conn5] end connection 127.0.0.1:64953 (0 connections now open)
2018-06-12T11:34:36.302+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64954 #6 (1 connection now open)
2018-06-12T11:34:36.303+0800 I NETWORK [conn6] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64954 (connection id: 6)
2018-06-12T11:34:36.303+0800 I NETWORK [conn6] end connection 127.0.0.1:64954 (0 connections now open)
2018-06-12T11:34:36.304+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64955 #7 (1 connection now open)
2018-06-12T11:34:41.417+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64964 #8 (2 connections now open)
2018-06-12T11:34:41.419+0800 I NETWORK [conn8] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64964 (connection id: 8)
2018-06-12T11:34:41.419+0800 I NETWORK [conn8] end connection 127.0.0.1:64964 (1 connection now open)
2018-06-12T11:34:41.419+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64965 #9 (2 connections now open)
2018-06-12T11:34:41.424+0800 I NETWORK [conn7] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64955 (connection id: 7)
2018-06-12T11:34:41.428+0800 I NETWORK [conn7] end connection 127.0.0.1:64955 (1 connection now open)
2018-06-12T11:34:41.432+0800 I NETWORK [conn9] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64965 (connection id: 9)
2018-06-12T11:34:41.438+0800 I NETWORK [conn9] end connection 127.0.0.1:64965 (0 connections now open)
2018-06-12T11:34:41.668+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64967 #10 (1 connection now open)
2018-06-12T11:34:44.143+0800 I NETWORK [conn10] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64967 (connection id: 10)
2018-06-12T11:34:44.144+0800 I NETWORK [conn10] end connection 127.0.0.1:64967 (0 connections now open)
2018-06-12T11:34:44.445+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64971 #11 (1 connection now open)
2018-06-12T11:34:44.452+0800 I NETWORK [conn11] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64971 (connection id: 11)
2018-06-12T11:34:44.452+0800 I NETWORK [conn11] end connection 127.0.0.1:64971 (0 connections now open)
2018-06-12T11:34:44.452+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64972 #12 (1 connection now open)
2018-06-12T11:34:44.455+0800 I NETWORK [conn12] Error receiving request from client: SSLHandshakeFailed: SSLHandshakeFailed. Ending connection from 127.0.0.1:64972 (connection id: 12)
2018-06-12T11:34:44.455+0800 I NETWORK [conn12] end connection 127.0.0.1:64972 (0 connections now open)
2018-06-12T11:34:44.699+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64974 #13 (1 connection now open)
2018-06-12T11:35:00.607+0800 I NETWORK [conn13] end connection 127.0.0.1:64974 (0 connections now open)
2018-06-12T11:35:00.909+0800 I NETWORK [listener] connection accepted from 127.0.0.1:64988 #14 (1 connection now open)
2018-06-12T11:35:00.914+0800 I NETWORK [listener] co

你可以去访问mongodb的网页

然后添加windows服务

进入管理员命令操作一下:

mongod --config D:\SoftWare\StduySoftWere\noSQL\mongo.config --install --serviceName "Mongodb"

然后进入服务:

然后就完成了mongodb服务的安装。。。

然后安装mongodb的可视化工具:Root 3

我使用的是它。免费的。

现在我们创建一个连接

然后出现这个:

然后右键有各种选择和操作

NOSQL -- mongoDB的了解与安装(Wins10)的更多相关文章

  1. NoSql非关系型数据库之MongoDB应用(二):安装MongoDB可视化工具

    业精于勤,荒于嬉:行成于思,毁于随. 我们上次说到NoSql非关系型数据库之MongoDB应用(一):安装MongoDB服务 这次我们介绍安装  NoSQL Manager for MongoDB 可 ...

  2. mongodb 3.0下载安装、配置及mongodb最新特性、基本命令教程详细介绍

    mongoDB简介(本文由www.169it.com搜集整理) MongoDB是一个高性能,开源,无模式的文档型数据库,是目前在IT行业非常流行的一种非关系型数据库(NoSql).它在许多场景下可用于 ...

  3. 二十三、MongoDb 数据库介绍、安装、启动和连接(非关系型数据库)

    1.数据库和文件的主要区别 1. 数据库有数据库表.行和列的概念,让我们存储操作数据更方便2. 数据库提供了非常方便的接口,可以让 nodejs.php java .net 很方便的实现增加修改删除功 ...

  4. MongoDB第一天(MongoDB的简介和安装)

    MongoDB 简介 什么是 MongoDB MongoDB 是一个基于分布式文件存储的数据库.由 C++语言编写.在为 WEB 应用提供可扩展的高性能数据存储解决方案. MongoDB 是一个介于关 ...

  5. MongoDB的下载与安装

      MongoDB的下载与安装 一.简介 MongoDB 是一个基于分布式文件存储的数据库.由 C++ 语言编写.旨在为 WEB 应用提供可扩展的高性能数据存储解决方案.MongoDB 是一个介于关系 ...

  6. MongoDB的快速手动安装

    上一篇文章<MongoDB.WebIDE:升级版的Mongodb管理工具>漏了点东西:就是关于MongoDB主从库的安装配置和启动.网上关于MongoDB的安装有大量的文章供大家学习.我这 ...

  7. MongoDB Linux下的安装和启动(转)

    1. 下载MongoDB,此处下载的版本是:mongodb-linux-i686-1.8.1.tgz.tar. http://fastdl.mongodb.org/linux/mongodb-linu ...

  8. PHP学习之-Mongodb在Windows下安装及配置

    Mongodb在Windows下安装及配置 1.下载 下载地址:http://www.mongodb.org/ 建议下载zip版本. 2.安装 下载windows版本安装就和普通的软件一样,直接下一步 ...

  9. (转)NoSQL——Redis在win7下安装配置的学习一

    NoSQL——Redis在win7下安装配置的学习一   有些也是从网上看来的 1.下载安装 Redis它没有windows的官方版本,但是又非官方的版本,到官网上去下载相应的版本,我的电脑是win7 ...

随机推荐

  1. java web 工程更改名字

    如图: 将工程名字struts2Project02更改为struts2Project03,步骤如下: 1. 右键工程名字,选中properties,如图 2.更改项目名字 3.第2步已经真正把项目名字 ...

  2. bzoj 4034: [HAOI2015]树上操作 树链剖分+线段树

    4034: [HAOI2015]树上操作 Time Limit: 10 Sec  Memory Limit: 256 MBSubmit: 4352  Solved: 1387[Submit][Stat ...

  3. StringBuffer 清空StringBuffer的实例的三种方法

    @Test public void testStringbuffer(){ //StringBuffer类没有clear方法,不过可以通过下面两种方法来清空一个StringBuffer的实例: Str ...

  4. Django 操作Mysql数据库

    pip安装mysqlclient sudo ln -s /usr/local/mysql/bin/mysql_config /usr/local/bin/mysql_config sudo pip i ...

  5. np.zeros

    np.zeros构造一个全部由0组成的矩阵 用法:zeros(shape, dtype = float, order = 'C') 参数: shape:形状 dtype类型: t ,位域,如t4代表4 ...

  6. [工具]cmd命令大全

    cmd命令大全(第一部分) winver---------检查Windows版本  wmimgmt.msc----打开windows管理体系结构(WMI)  wupdmgr--------window ...

  7. canvas功能函数

    封装一下常用的函数, 输入:通过一些固定的值,得到一个圆形,一个心形,一个波浪,一个涟漪,一个抛物线,一个自由弹起的过程. 返回:x,y坐标. 注意: (1)坐标轴的位置,有的在0,0有的可能不在. ...

  8. 原生dom事件注册和移除事件的封装

    var addEvent = (function() { var setListener; setListener = false; return function(el, ev, fn) { if ...

  9. sublime Text如何取消两栏窗口?

    在菜单栏里的 View->LayOut->Single,也可以用快捷键 Alt+Shift+1.如图所示.(亲测可用) &amp;lt;img src="https:// ...

  10. c# DLL封装并调用

    1.封装自己的dll: a.打开visual studio - 文件 - 新建 - 项目- 类库 - 名称MyTestDll: b.右键Class1.cs - 修改为 TestDll.cs; c.在里 ...