標籤:ebe max init connect tor unit created http 成功
Windows 平台安裝 MongoDBMongoDB 下載
官網:https://www.mongodb.com/download-center#community
- 注意:在 MongoDB 2.2 版本後已經不再支援 Windows XP 系統。最新版本也已經沒有了 32 位系統的安裝檔案。
- 下載後雙擊該檔案,按操作提示安裝即可。 安裝過程中,你可以通過點擊 "Custom(自訂)" 按鈕來設定你的安裝目錄。
- 建立資料目錄 MongoDB將資料目錄存放在 db 目錄下。但是這個資料目錄不會主動建立,我們在安裝完成後需要建立它。請注意,資料目錄應該放在根目錄下((如: C:\ 或者 D:\ 等 )。 在本教程中,我們已經在C:盤 安裝了 mongodb,現在讓我們建立一個data的目錄然後在data目錄裡建立db目錄。
c:\>cd c:c:\>mkdir datac:\>cd datac:\data>mkdir dbc:\data>cd dbc:\data\db>
你也可以通過window的資源管理員中建立這些目錄,而不一定通過命令列。
命令列下運行 MongoDB 伺服器
- 你可以找到MongoDB下的bin目錄中得mongod.exe雙擊直接運行它。
- 或者使用命令列運行它,為了從命令提示字元下運行 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-64MC4GG2017-09-26T14:41:23.841+0800 I CONTROL [initandlisten] targetMinOS: Windows 7/Windows Server 2008 R22017-09-26T14:41:23.841+0800 I CONTROL [initandlisten] db version v3.4.92017-09-26T14:41:23.841+0800 I CONTROL [initandlisten] git version: 876ebee8c7dd0e2d992f36a848ff4dc50ee6603e2017-09-26T14:41:23.841+0800 I CONTROL [initandlisten] OpenSSL version: OpenSSL 1.0.1u-fips 22 Sep 20162017-09-26T14:41:23.841+0800 I CONTROL [initandlisten] allocator: tcmalloc2017-09-26T14:41:23.841+0800 I CONTROL [initandlisten] modules: none2017-09-26T14:41:23.842+0800 I CONTROL [initandlisten] build environment:2017-09-26T14:41:23.842+0800 I CONTROL [initandlisten] distmod: 2008plus-ssl2017-09-26T14:41:23.842+0800 I CONTROL [initandlisten] distarch: x86_642017-09-26T14:41:23.842+0800 I CONTROL [initandlisten] target_arch: x86_642017-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.9connecting to: mongodb://127.0.0.1:27017MongoDB server version: 3.4.9Welcome 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-userServer 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]
Windows 平台安裝 MongoDB