Mongodb安裝 for windows7 X64

來源:互聯網
上載者:User

原文http://blog.sina.com.cn/s/blog_685213e70101g81t.html

安裝MongoDB(最初下)

1.按照作業系統下載http://www.mongodb.org/downloads。

2.在D盤建立MongoDB檔案夾(此檔案夾為自訂的資料庫安裝目錄D:\MongoDB)把剛才下載的壓縮包解壓並把bin檔案夾拷貝到MongoDB檔案夾。

3.在MongoDB檔案夾內建立logs檔案夾(用於儲存記錄檔D:\MongoDB\logs),並在此檔案夾內建立空檔案mongodb.log。

4.在MongoDB檔案夾內建立db檔案夾(用於存放資料庫檔案D:\MongoDB\db)。

5.啟動MongoDB。
以系統管理員身份運行cmd,切換至D:\MongoDB\bin目錄輸入mongod.exe --dbpath=d:\mongodb\db。如看到控制台最後 [initandlisten] waiting for connections on port 27017    Tue Oct 09 11:50:55 [websvr] admin web console watiing for connections on port 28017說明啟動成功(資料庫連接埠和Web連接埠,預設分別是27017和28017,在瀏覽器中開啟http://localhost:28017,可以看到其相關的一些資訊。) 

6.測試MongoDB
以管理員身份建立一個cmd視窗,進入MongoDB的bin目錄輸入mongo,如出現connecting to:test說明測試通過。
繼續測試:
(1).輸入use test斷行符號
(2).輸入db.foo.save({hello:1, baie:2})斷行符號
(3).輸入db.foo.find()斷行符號
如果出現類似{ "_id" : ObjectId("5073a0a090f93be1455461d2"), "hello" : 1, "baie" : 2 }之類資訊,說明測試成功資料已經插入資料庫,然後輸入exit退出。

7.註冊MongoDB為系統服務(此步驟必須以系統管理員身份運行cmd,否則會報錯)
以系統管理員身份運行cmd輸入並切換至MongoDB的bin目錄運行以下語句
mongod.exe --dbpath=d:\mongodb\db --logpath=d:\mongodb\logs\mongodb.log --install --serviceName "MongoDB"
斷行符號
如果控制台出現類似Tue Oct 09 12:05:15 Service can be started from the command line with 'net start MongoDB'這樣的語句,說明服務已經註冊成功。(卸載服務 mongod.exe --remove --serviceName "MongoDB")

8.在cmd中輸入net start MongoDB即可啟動MongoDB資料庫服務,此時控制台輸出Mongo DB 服務已經啟動成功,說明系統啟動成功。

9.如果出現發生系統錯誤 1067 請把db目錄下的mongod.lock檔案刪除後重新輸入net start MongoDB啟動服務即可。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.