こんにちわlisです!
MongoDBを使ってみたい!
ということでWindowsでMongoDBをセットアップしてみました!
ChocolateyでMongoDBインストール
Chocolateyでは
> cinst mongodb
でインストールできます。
GUIならこれ。
パスを通す
完了したらC:\Program Files\MongoDB\Server\4.4\bin
のパスを通します。
インストールされたことを確認します。
コマンドプロンプトなどを起ち上げて
>mongo --version MongoDB shell version v4.4.4 Build Info: { "version": "4.4.4", "gitVersion": "8db30a63db1a9d84bdcad0c83369623f708e0397", "modules": [], "allocator": "tcmalloc", "environment": { "distmod": "windows", "distarch": "x86_64", "target_arch": "x86_64" } }
表示されました!OKです!
MongoDBのサービスを起動
DBのデータとログの置き場を作成。
> cd /d d:\tools > mkdir MongoDB > cd MongoDB > mkdir data > mkdir logs
data
をDBのデータ置き場、logs
をログ置き場として指定して起動します。
> mongod --dbpath D:\tools\MongoDB\data --logpath D:\tools\MongoDB\logs
MongoDBを起動
起動するとこんな感じ。
>mongo MongoDB shell version v4.4.4 connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb Implicit session: session { "id" : UUID("08b339ed-b779-4802-acac-830b54752a8d") } MongoDB server version: 4.4.4 --- The server generated these startup warnings when booting: 2021-03-24T15:26:18.311+09:00: Access control is not enabled for the database. Read and write access to data and configuration is unrestricted --- --- Enable MongoDB's free cloud-based monitoring service, which will then receive and display metrics about your deployment (disk utilization, CPU, operation statistics, etc). The monitoring data will be available on a MongoDB website with a unique URL accessible to you and anyone you share the URL with. MongoDB may use this information to make product improvements and to suggest MongoDB products and deployment options to you. To enable free monitoring, run the following command: db.enableFreeMonitoring() To permanently disable this reminder, run the following command: db.disableFreeMonitoring() --- >
参考
コチラを参考にしました。ありがとうございました!
あとがき
MongoDBをWindows(Chocolatey)でセットアップでした!
セットアップもなにもChocolateyでインストールして、起動させればそれでOKって感じでした。
簡単です……