一僧须、安裝
ubuntu默認(rèn)安裝mongodb的版本為3.6版本
安裝:
$sudo apt install mongodb-org
如需安裝高版本執(zhí)行以下命令纲刀,如版本4
$sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4
$echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb.list
$sudo apt update
之后安裝mongodb
$sudo apt install mongodb-org
如需安裝自定義版本執(zhí)行
$sudo apt install mongodb-org=4.0.23
二、卸載
卸載比較徹底的命令
$sudo apt-get purge --auto-remove mongodb
三担平、操作
導(dǎo)出表
mongoexport --host 127.0.0.1:27017 --username test --password test123 --authenticationDatabase admin --db testdb --collection testcollection --type json --out testcollection.json