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"