Mongodb在Windows上的安裝

來源:互聯網
上載者:User

Mongodb在Windows上的安裝

  首先,我們到Mongodb的官方網站http://www.mongodb.org/downloads下載,下載的版本目前是1.8.1,下載後,解壓到檔案夾,比如C:\mongodb-win32-1.8.1。接下來,我們可以觀察下,該檔案夾下有如下檔案:

  可以看到,mongodb可謂十分簡單,只有10個檔案。接下來,我們建立一個資料庫檔案存放的目錄,這裡設定為c:\mymongodb。然後可以在命令列方式下啟動mongodb了,運行如下命令:

C:\mongodb-win32-1.8.1\bin>mongod --dbpath "c:\mymongodb"
當出現如下提示資訊時,即代表已經成功啟動了mongodb

Fri Apr 29 17:15:34 [initandlisten] MongoDB starting : 
pid=5280 port=27017 dbpath=c:\mymongodb 32-bi
...
Fri Apr 29 17:15:34 [initandlisten] waiting for connections on port 27017
Fri Apr 29 17:15:34 [websvr] web admin interface listening on port 28017

   在上面的資訊中,我們注意到,mongodb在連接埠27017進行了監聽來自用戶端的串連,而在28017連接埠,則啟用了web介面的管理工具,因此我們可以通過http://localhost:28017進行訪問,可以看到如下的介面:


▲點擊查看大圖

  接下來,我們學習下,如何將mongodb安裝成windows 中的服務,首先我們在mongodb下,可以通過—help選項,查看相關的協助指令,如下:

   C:\MongoDB\bin>mongod --help
 
Windows Service Control Manager options:
  --install                install mongodb service
  --remove              remove mongodb service
  --reinstall             reinstall mongodb service (equivilant of mongod
                             --remove followed by mongod --install)
  --serviceName arg           windows service name
  --serviceDisplayName arg windows service display name
  --serviceDescription arg    windows service description
  --serviceUser arg              user name service executes as
  --servicePassword arg       password used to authenticate serviceUser

   可以看到,--install和—remove兩個參數正是我們需要的。因此,將mongodb安裝成windows服務的命令如下:

  mongod --dbpath "c:\mymongodb" --logpath "c:\mymongodb\logs.txt" --install --serviceName "MongoDB"

   上面的命令列中,用—dbpath參數指出了資料庫的目錄,--logpath則指出了日誌存放的目錄,而—serviceName參數則指出了,命名安裝的服務名為MongoDB,運行後有如下提示:

all output going to: c:\mymongodb\logs.txt
Creating service MongoDB.
Service creation successful.
Service can be started from the command line via 'net start "MongoDB"'.

   並且可以在windows的控制台中的服務中,看到該服務。而卸載服務的命令也很簡單,如下:

mongod --remove --serviceName "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.