Windows10にMongoDB4.4.3サーバ環境を構築する方法

■ インストール方法
1.「mongodb-windows-x86_64-4.4.3-signed.msi」をダブルクリックします。

2.「Next」をクリックします。

3.「I accept the terms in the License Agreement」チェックを入れます

4.「Next」をクリックします。

5.Complete」をクリックします。

6.「Serveice Configuration」画面が表示されます。
「Service Name」: MongoDB
「Data Directory」:C:\Program Files\MongoDB\Server\4.4\data\
「Log Directory」:C:\Program Files\MongoDB\Server\4.4\log\

7.「Next」 ->「Install」をクリックします。

8.「The setup must update files or services that can not be updated while the system
is running. If you choose to contiune,a reboot will be required to complete the setup」

9.[ok]をクリックします。

10·.「Finish」をクリックします。

11.PCを再起動します

■ 環境PATHを設定
1.「設定」->「システム」->「バージョン情報」をクリックします。

2.「システム情報」->「システムの詳細設定」をクリックします。

3.「環境変数(N)」->「システム環境変数」->「Path」->「編集(I)」をクリックします。

4.「新規(N)」をクリックし、「C:\Program Files\MongoDB\Server\4.4\bin」を入力します。

5.「OK」をクリックします。

6.PCをさ再起動します

■ MongoDBサーバ起動
>mongod
{“t":{“$date":"2021-01-19T10:26:58.339+09:00″},"s":"I", “c":"CONTROL", “id":23285, “ctx":"main","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify –sslDisabledProtocols 'none'"}
{“t":{“$date":"2021-01-19T10:26:58.756+09:00″},"s":"W", “c":"ASIO", “id":22601, “ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
中略

■ MongoDBサーバに接続
>mongo
MongoDB shell version v4.4.3
connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb
Implicit session: session { “id" : UUID(“e5a06025-d75b-45aa-ac3a-ad4d238f9a53") }
MongoDB server version: 4.4.3

> db.version();
4.4.3
> quit()

MongoDB

Posted by arkgame