1. 程式人生 > >Windows 平臺安裝 MongoDB

Windows 平臺安裝 MongoDB

pla ora 5.6 顯示 doc 命令 targe sna 安裝完成

Windows 平臺安裝 MongoDB

MongoDB 下載

官網下載地址:https://www.mongodb.com/download-center#community

  • 註意:在 MongoDB 2.2 版本後已經不再支持 Windows XP 系統。最新版本也已經沒有了 32 位系統的安裝文件。
  1. 下載後雙擊該文件,按操作提示安裝即可。 安裝過程中,你可以通過點擊 "Custom(自定義)" 按鈕來設置你的安裝目錄。
  2. 創建數據目錄 MongoDB將數據目錄存儲在 db 目錄下。但是這個數據目錄不會主動創建,我們在安裝完成後需要創建它。請註意,數據目錄應該放在根目錄下((如: C:\ 或者 D:\ 等 )。 在本教程中,我們已經在C:盤 安裝了 mongodb,現在讓我們創建一個data的目錄然後在data目錄裏創建db目錄。
c:\>cd c:
c:\>mkdir data

c:\>cd data

c:\data>mkdir db

c:\data>cd db

c:\data\db>

你也可以通過window的資源管理器中創建這些目錄,而不一定通過命令行。

命令行下運行 MongoDB 服務器

  1. 你可以找到MongoDB下的bin目錄中得mongod.exe雙擊直接運行它。
  2. 或者使用命令行運行它,為了從命令提示符下運行 MongoDB 服務器,你必須從 MongoDB 目錄的 bin 目錄中執行 mongod.exe 文件。例:cd C:\Program Files\MongoDB\Server\3.4\bin 再執行:mongod --dbpath c:\data\db 若出現以下顯示表示運行成功
2017-09-26T14:41:23.836+0800 I CONTROL  [initandlisten] MongoDB starting : pid=1176 port=27017 dbpath=C:\data\db\ 64-bit host=DESKTOP-64MC4GG
2017-09-26T14:41:23.841+0800 I CONTROL  [initandlisten] targetMinOS: Windows 7/Windows Server 2008 R2
2017-09-26T14:41:23.841+0800 I CONTROL  [initandlisten] db version v3.4.9
2017-09-26T14:41:23.841+0800 I CONTROL  [initandlisten] git version: 876ebee8c7dd0e2d992f36a848ff4dc50ee6603e
2017-09-26T14:41:23.841+0800 I CONTROL  [initandlisten] OpenSSL version: OpenSSL 1.0.1u-fips  22 Sep 2016
2017-09-26T14:41:23.841+0800 I CONTROL  [initandlisten] allocator: tcmalloc
2017-09-26T14:41:23.841+0800 I CONTROL  [initandlisten] modules: none
2017-09-26T14:41:23.842+0800 I CONTROL  [initandlisten] build environment:
2017-09-26T14:41:23.842+0800 I CONTROL  [initandlisten]     distmod: 2008plus-ssl
2017-09-26T14:41:23.842+0800 I CONTROL  [initandlisten]     distarch: x86_64
2017-09-26T14:41:23.842+0800 I CONTROL  [initandlisten]     target_arch: x86_64
2017-09-26T14:41:23.842+0800 I CONTROL  [initandlisten] options: {}
2017-09-26T14:41:23.862+0800 I -        [initandlisten] Detected data files in C:\data\db\ created by the ‘wiredTiger‘ storage engine, so setting the active storage engine to ‘wiredTiger‘.
2017-09-26T14:41:23.864+0800 I STORAGE  [initandlisten] wiredtiger_open config: create,cache_size=1474M,session_max=20000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000),checkpoint=(wait=60,log_size=2GB),statistics_log=(wait=0),
2017-09-26T14:41:24.964+0800 I CONTROL  [initandlisten]
2017-09-26T14:41:24.965+0800 I CONTROL  [initandlisten] ** WARNING: Access control is not enabled for the database.
2017-09-26T14:41:24.965+0800 I CONTROL  [initandlisten] **          Read and write access to data and configuration is unrestricted.
2017-09-26T14:41:24.965+0800 I CONTROL  [initandlisten]
2017-09-26T14:41:25.652+0800 I FTDC     [initandlisten] Initializing full-time diagnostic data capture with directory ‘C:/data/db/diagnostic.data‘
2017-09-26T14:41:25.661+0800 I NETWORK  [thread1] waiting for connections on port 27017

將MongoDB服務器作為Windows服務運行

命令行進入mongoDB的bin目錄執行:

mongod.exe --bind_ip yourIPadress --logpath "C:\data\dbConf\mongodb.log" --logappend --dbpath "C:\data\db" --port yourPortNumber --serviceName "YourServiceName" --serviceDisplayName "YourServiceName" --install
  • --bind_ip 綁定服務IP,若綁定127.0.0.1,則只能本機訪問,不指定默認本地所有IP
  • --logpath 定MongoDB日誌文件,註意是指定文件不是目錄(此處文件夾dbConf為我自己新建的)
  • --logappend 使用追加的方式寫日誌
  • --dbpath 指定數據庫路徑
  • --port 指定服務端口號,默認端口27017
  • --serviceName 指定服務名稱
  • --serviceDisplayName 指定服務名稱,有多個mongodb服務時執行。
  • --install 指定作為一個windows服務安裝。

MongoDB後臺管理 Shell

如果你需要進入MongoDB後臺管理,你需要先打開mongodb裝目錄的下的bin目錄,然後執行mongo.exe文件,MongoDB Shell是MongoDB自帶的交互式Javascript shell,用來對MongoDB進行操作和管理的交互式環境。 當你進入mongoDB後臺後,它默認會鏈接到 test 文檔(數據庫)即命令行進入bin目錄後執行:mongo 出現如下信息表示成功:

MongoDB shell version v3.4.9
connecting to: mongodb://127.0.0.1:27017
MongoDB server version: 3.4.9
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
        http://docs.mongodb.org/
Questions? Try the support group
        http://groups.google.com/group/mongodb-user
Server has startup warnings:
2017-09-26T14:41:24.964+0800 I CONTROL  [initandlisten]
2017-09-26T14:41:24.965+0800 I CONTROL  [initandlisten] ** WARNING: Access control is not enabled for the database.
2017-09-26T14:41:24.965+0800 I CONTROL  [initandlisten] **          Read and write access to data and configuration is unrestricted.
2017-09-26T14:41:24.965+0800 I CONTROL  [initandlisten]
  • 由於它是一個JavaScript shell,您可以運行一些簡單的算術運算:

    > 2 + 2

    4

    > 4+4

    8

  • db 命令用於查看當前操作的文檔(數據庫):

    > db

    test

Windows 平臺安裝 MongoDB