SpringBoot學習的準備工作(安裝MongoDB以及視覺化工具)
安裝MongoDB以及視覺化工具
安裝mongoDB
- 從官網下載mongoDB windows安裝包(這裡為windows 64位版本)。 mongoDB官方下載連結
- 開啟msi安裝包,點選Next。
- 執行以下操作。
- 修改mongodb安裝的位置,如
D:\MongoDB\Server\4.4\
。
- 等待安裝。
- MongoDB安裝完成!
- 開啟cmd命令列,切換到上面所設定的mongodb安裝目錄下的bin目錄,輸入
mongo
執行mongodb
cd D:\MongoDB\Server\4.4\bin
D:\MongoDB\Server\4.4\bin>mongo
MongoDB shell version v4.4.2
connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb
Implicit session: session { "id" : UUID("c38e45c9-5fdf-4111-ba93-e360741c1c1c") }
MongoDB server version: 4.4.2
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
https://docs.mongodb.com/
Questions? Try the MongoDB Developer Community Forums
https://community.mongodb.com
---
The server generated these startup warnings when booting:
2020-11-28T02:28:10.778+08: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資料庫。
- 檢視服務。
建立第一條文件
- 回到cmd命令列,進入mongoDB。
D:\MongoDB\Server\4.4\bin>mongo
MongoDB shell version v4.4.2
connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb
Implicit session: session { "id" : UUID("c38e45c9-5fdf-436d-ba93-e360741cf2c5") }
MongoDB server version: 4.4.2
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
https://docs.mongodb.com/
Questions? Try the MongoDB Developer Community Forums
https://community.mongodb.com
---
The server generated these startup warnings when booting:
2020-11-28T02:28:10.778+08: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()
---
>
- 輸入
show dbs
命令顯示所有database。
> show dbs
admin 0.000GB
config 0.000GB
local 0.000GB
>
use mymongo
新建一個資料庫mymongo
(會自動切換到mymongo
資料庫),db.users.insert()
建立一條集合名為users,並生成第一條文件{username:"aoopang",age:22}
(詳細語法參考菜鳥教程)。
> use mymongo
switched to db mymongo
> db.users.insert({username:"aoopang",age:22})
WriteResult({ "nInserted" : 1 })
> db
mymongo
> show collections
users
- 檢視剛才生成的文件。
> db.users.find()
{ "_id" : ObjectId("5fc14fed0ac8731facb27ad4"), "username" : "aoopang", "age" : 22 }
>
- 本地mongoDB的第一個自己的資料庫的第一個集合的第一條文件就建立好了!
安裝mongodb視覺化工具:Robo3T
- 下載robo3t的壓縮包。
因為在之前嘗試下載Robo3T.exe時被瀏覽器判斷為危險軟體所以這裡直接下載zip壓縮包,點選連線直接下載:version 1.4.2 for Windows 64-bit - 解壓該壓縮包並把重新命名資料夾後放置在你的工具目錄裡。
- 進入該目錄,點選robo3t.exe執行robo3t。
- 執行以下操作。
- 開啟之後新建一個本地連線。
使用robo3t
- 現在可以在robo3t中使用mongodb的語法來運算元據庫了!
相關文章
- Mongodb安裝篇+視覺化工具篇MongoDB視覺化
- OGG安裝準備工作
- MongoDB視覺化客戶端工具MonjaDBMongoDB視覺化客戶端
- mongodb的安裝以及使用MongoDB
- 從零開始學機器學習——準備和視覺化資料機器學習視覺化
- Openfiler+RAC的安裝之六--安裝前的準備工作
- windows系統下python下載與安裝以及視覺化工具PyCharm安裝WindowsPython視覺化PyCharm
- 【Tensorflow_DL_Note16】TensorFlow視覺化學習3_引數,準確率的視覺化視覺化
- Docker視覺化管理工具Shipyard安裝與配置Docker視覺化
- 安裝docker-ui 視覺化docker管理工具DockerUI視覺化
- 學前準備工作
- linux視覺化桌面安裝Linux視覺化
- 命令列視覺化工具lazydocker 安裝命令列視覺化Docker
- 安裝ArchLinux到U盤(一)準備工作Linux
- 學習MongoDB 一:MongoDB 入門(安裝與配置)MongoDB
- 初級學習android的相關準備工作和學習的流程Android
- Django 視覺化Web展示 學習Django視覺化Web
- 「深度學習系列」CNN模型的視覺化深度學習CNN模型視覺化
- 視覺化學習:WebGL的基礎使用視覺化Web
- Linux 安裝11g RAC 前準備工作Linux
- aix5.3 安裝oracle11g 準備工作AIOracle
- oracle安裝實施準備工作郵件通知模板Oracle
- RHEL6安裝ORACLE11G準備工作Oracle
- MongoDB安裝以及資料初始化海量資料MongoDB
- POSTGIS以及QGIS視覺化工具使用視覺化
- 資料視覺化學習資源視覺化
- 深度學習(視覺化卷積核)深度學習視覺化卷積
- ubuntu安裝opensips視覺化介面cpUbuntu視覺化
- Openfire安裝準備-MySQL資料庫準備MySql資料庫
- 使用Docker安裝ElasticSearch和視覺化介面Kibana【圖文教學】DockerElasticsearch視覺化
- SpringBoot整合超好用的API視覺化介面工具swaggerSpring BootAPI視覺化Swagger
- Redis工具視覺化工具Redis Desktop Manager(附安裝包)Redis視覺化
- day0-準備工作: 工具介紹
- RAC安裝之一 安裝前準備
- 開源的資料視覺化平臺 Kibana 日誌視覺化 mac 安裝筆記視覺化Mac筆記
- 視覺學習(三)視覺
- 學習python視覺化,matplotlib庫學習,基本操作Python視覺化
- 【mongodb】mongodb的安裝MongoDB