MongoDB: Difference between revisions
Jump to navigation
Jump to search
| (32 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
==Raspbian== | ==Raspbian== | ||
< | {|class='wikitable mw-collapsible' style='width:100%;margin:3px 0' | ||
!scope='col' style='text-align:left' colspan='2'| | |||
Raspbian | |||
|- | |||
|valign='top' style='width:50%'| | |||
<syntaxhighlight style='margin:3px 0' lang='bash'> | |||
apt install mongodb | apt install mongodb | ||
nano /etc/mongodb.conf | nano /etc/mongodb.conf | ||
| Line 11: | Line 16: | ||
systemctl enable mongodb | systemctl enable mongodb | ||
systemctl status mongodb | systemctl status mongodb | ||
</ | </syntaxhighlight> | ||
|valign='top' style='width:50%'| | |||
|} | |||
==Debian== | ==Debian== | ||
< | {|class='wikitable mw-collapsible' style='width:100%;margin:3px 0' | ||
sudo apt | !scope='col' style='text-align:left' colspan='2'| | ||
sudo | Debian | ||
|- | |||
|valign='top' style='width:50%'| | |||
<syntaxhighlight style='margin:3px 0' lang='bash'> | |||
curl -fsSL https://pgp.mongodb.com/server-8.0.asc \ | |||
| sudo tee /etc/apt/keyrings/mongodb-8.0.asc >/dev/null | |||
cat << SRC | sudo tee /etc/apt/sources.list.d/mongodb-8.0.list >/dev/null | |||
deb [arch=$(dpkg --print-architecture)\ | |||
signed-by=/etc/apt/keyrings/mongodb-8.0.asc]\ | |||
https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 multiverse | |||
SRC | |||
</syntaxhighlight> | |||
curl -fsSL https://pgp.mongodb.com/server- | |valign='top' style='width:50%'| | ||
| sudo | <syntaxhighlight style='margin:3px 0' lang='bash'> | ||
curl -fsSL https://pgp.mongodb.com/server-7.0.asc \ | |||
| sudo tee /etc/apt/keyrings/mongodb-7.0.asc >/dev/null | |||
cat << | cat << SRC | sudo tee /etc/apt/sources.list.d/mongodb-7.0.list >/dev/null | ||
deb [arch=$(dpkg --print-architecture)\ | deb [arch=$(dpkg --print-architecture)\ | ||
signed-by=/ | signed-by=/etc/apt/keyrings/mongodb-7.0.asc]\ | ||
https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/ | https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse | ||
SRC | |||
</syntaxhighlight> | |||
|- | |||
|valign='top'| | |||
<syntaxhighlight style='margin:3px 0' lang='bash'> | |||
sudo apt update | sudo apt update | ||
sudo apt search mongodb-org | |||
sudo apt install mongodb-org | sudo apt install mongodb-org | ||
| Line 34: | Line 60: | ||
sudo systemctl daemon-reload | sudo systemctl daemon-reload | ||
mongosh | mongosh | ||
</ | </syntaxhighlight> | ||
|valign='top'| | |||
|} | |||
==MacOS== | ==MacOS== | ||
< | {|class='wikitable mw-collapsible' style='width:100%;margin:3px 0' | ||
!scope='col' style='text-align:left' colspan='2'| | |||
MacOS | |||
|- | |||
|valign='top' style='width:50%'| | |||
<syntaxhighlight style='margin:3px 0' lang='bash'> | |||
brew tap | grep mongodb | brew tap | grep mongodb | ||
xcode-select --install | xcode-select --install | ||
| Line 63: | Line 97: | ||
brew services start mongodb-community | brew services start mongodb-community | ||
brew services list | brew services list | ||
</ | </syntaxhighlight> | ||
|valign='top'| | |||
|} | |||
==Mongosh== | ==Mongosh== | ||
< | {|class='wikitable mw-collapsible' style='width:100%;margin:3px 0' | ||
!scope='col' style='text-align:left' colspan='2'| | |||
Mongosh | |||
|- | |||
|valign='top' style='width:50%'| | |||
<syntaxhighlight style='margin:3px 0' lang='js'> | |||
mongosh | mongosh | ||
: <<'END_COMMENT' | : <<'END_COMMENT' | ||
| Line 96: | Line 138: | ||
local> | local> | ||
END_COMMENT | END_COMMENT | ||
</ | </syntaxhighlight> | ||
|valign='top' style='width:50%'| | |||
|} | |||
==Compass== | ==Compass== | ||
< | {|class='wikitable mw-collapsible' style='width:100%;margin:3px 0' | ||
sudo wget -c https://downloads.mongodb.com/compass/mongodb-compass_1. | !scope='col' style='text-align:left'| | ||
sudo dpkg -i ${HOME}/Downloads/mongodb-compass_1. | Compass | ||
sudo apt install ${HOME}/Downloads/mongodb-compass_1. | |- | ||
sudo rm -rf ${HOME}/Downloads/mongodb-compass_1. | |valign='top'| | ||
<syntaxhighlight style='margin:3px 0' lang='bash'> | |||
sudo wget -c https://downloads.mongodb.com/compass/mongodb-compass_1.44.5_amd64.deb -P ${HOME}/Downloads | |||
sudo dpkg -i ${HOME}/Downloads/mongodb-compass_1.44.5_amd64.deb | |||
sudo apt install ${HOME}/Downloads/mongodb-compass_1.44.5_amd64.deb | |||
sudo rm -rf ${HOME}/Downloads/mongodb-compass_1.44.5_amd64.deb | |||
sudo apt --fix-broken install | sudo apt --fix-broken install | ||
sudo apt install -f | sudo apt install -f | ||
</ | </syntaxhighlight> | ||
|} | |||
==Knowledge== | ==Knowledge== | ||
{| | {|class='wikitable mw-collapsible' style='width:100%;margin:3px 0' | ||
|valign= | !scope='col' style='text-align:left' colspan='2'| | ||
Knowledge | |||
|- | |||
|valign='top' style='width:50%'| | |||
<syntaxhighlight style='margin:3px 0' lang='bash'> | |||
sudo apt remove --auto-remove mc | |||
sudo apt purge --auto-remove mc | |||
sudo apt purge mc | |||
</syntaxhighlight> | |||
|valign='top' style='width:50%'| | |||
<syntaxhighlight style='margin:3px 0' lang='bash'> | |||
apt list --installed|grep mongodb-compass | |||
sudo apt remove mongodb-compass | |||
mongosh --quiet | |||
</syntaxhighlight> | |||
|- | |- | ||
| | |valign='top'| | ||
<syntaxhighlight style='margin:3px 0' lang='bash'> | |||
use admin | |||
show databases | |||
show collections | |||
</syntaxhighlight> | |||
|valign='top'| | |||
<syntaxhighlight style='margin:3px 0' lang='js'> | |||
show users; | |||
db.getUsers(); | |||
db.dropUser("chorke", {w: "majority", wtimeout: 5000}); | |||
</syntaxhighlight> | |||
|- | |- | ||
| valign=" | |valign='top'| | ||
<syntaxhighlight style='margin:3px 0' lang='js'> | |||
db.createUser({ | |||
user: "chorke", | |||
pwd: "sadaqah!", | |||
roles: [ | |||
{ role: "readWrite", db: "Gateway" }, | |||
{ role: "readWrite", db: "Onboarding" }, | |||
{ role: "readWrite", db: "OnboardingForm" } | |||
] | |||
}); | |||
</syntaxhighlight> | |||
|valign='top'| | |||
|} | |} | ||
==References== | ==References== | ||
{|class='wikitable mw-collapsible' style='width:100%;margin:3px 0' | |||
!scope='col' style='text-align:left' colspan='3'| | |||
References | |||
|- | |||
|valign='top' style='width:33%'| | |||
* [https://www.mongodb.com/try/download/compass MongoDB » Download » Compass (GUI)] | |||
* [https://hevodata.com/learn/mongodb-compass-ubuntu/ MongoDB » Compass » On Ubuntu] | |||
* [https://www.mongodb.com/try/download/shell MongoDB » Download » Shell (CLI)] | |||
* [https://www.mongodb.com/blog/post/building-with-patterns-the-outlier-pattern MongoDB » Building With Patterns] | |||
* [https://www.mongodb.com/docs/manual/core/data-model-design/ MongoDB » Data Model Design] | |||
* [https://www.mongodb.com/developer/products/mongodb/schema-design-anti-pattern-massive-arrays/ MongoDB » Massive Arrays] | |||
* [https://learn.mongodb.com/learning-paths/data-modeling-for-mongodb MongoDB » Data Modeling] | |||
* [https://andyfelong.com/2019/01/mongodb-3-2-64-bit-running-on-raspberry-pi-3-with-caveats/ MongoDB » On Raspbian] | * [https://andyfelong.com/2019/01/mongodb-3-2-64-bit-running-on-raspberry-pi-3-with-caveats/ MongoDB » On Raspbian] | ||
* [https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-ubuntu/ MongoDB » On Ubuntu] | * [https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-ubuntu/ MongoDB » On Ubuntu] | ||
* [https://docs.mongodb.com/manual/tutorial/install-mongodb-on-os-x/ MongoDB » On macOS] | * [https://docs.mongodb.com/manual/tutorial/install-mongodb-on-os-x/ MongoDB » On macOS] | ||
|valign='top' style='width:34%'| | |||
* [https://www.mongodb.com/developer/products/mongodb/mongodb-schema-design-best-practices/ MongoDB » Schema Design Best Practices] | |||
* [https://www.mongodb.com/docs/manual/core/wiredtiger/ MongoDB » Storage Engine » WiredTiger] | |||
* [https://stackoverflow.com/questions/33174655/ MongoDB » Async vs Sync Java Driver] | |||
* [https://stackoverflow.com/questions/38303739/ MongoDB » Java Driver Sync & Async] | |||
* [https://www.mongodb.com/docs/manual/release-notes/8.0/ MongoDB » Release Notes » 8.0] | |||
* [https://www.mongodb.com/docs/manual/release-notes/7.0/ MongoDB » Release Notes » 7.0] | |||
* [https://www.mongodb.com/docs/manual/administration/production-notes/ MongoDB » Production Notes] | |||
* [https://www.mongodb.com/docs/manual/release-notes/ MongoDB » Release Notes] | |||
|valign='top' style='width:33%'| | |||
|- | |||
|valign='top'| | |||
* [[Homebrew]] | * [[Homebrew]] | ||
* [[Base64]] | |||
* [[JQ Tool]] | |||
* [[LuaJIT]] | |||
* [[CIDR]] | |||
* [[UFW]] | |||
* [[Wrk]] | |||
|valign='top'| | |||
|valign='top'| | |||
|} | |||
Latest revision as of 15:40, 16 January 2026
Raspbian
|
Raspbian | |
|---|---|
apt install mongodb
nano /etc/mongodb.conf
: <<'END_COMMENT'
bind_ip = 127.0.0.1,10.19.83.105
port = 27017
END_COMMENT
systemctl start mongodb
systemctl enable mongodb
systemctl status mongodb
|
|
Debian
|
Debian | |
|---|---|
curl -fsSL https://pgp.mongodb.com/server-8.0.asc \
| sudo tee /etc/apt/keyrings/mongodb-8.0.asc >/dev/null
cat << SRC | sudo tee /etc/apt/sources.list.d/mongodb-8.0.list >/dev/null
deb [arch=$(dpkg --print-architecture)\
signed-by=/etc/apt/keyrings/mongodb-8.0.asc]\
https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 multiverse
SRC
|
curl -fsSL https://pgp.mongodb.com/server-7.0.asc \
| sudo tee /etc/apt/keyrings/mongodb-7.0.asc >/dev/null
cat << SRC | sudo tee /etc/apt/sources.list.d/mongodb-7.0.list >/dev/null
deb [arch=$(dpkg --print-architecture)\
signed-by=/etc/apt/keyrings/mongodb-7.0.asc]\
https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse
SRC
|
sudo apt update
sudo apt search mongodb-org
sudo apt install mongodb-org
ps --no-headers -o comm 1
sudo systemctl status mongod
sudo systemctl daemon-reload
mongosh
|
|
MacOS
|
MacOS | |
|---|---|
brew tap | grep mongodb
xcode-select --install
brew tap mongodb/brew
brew tap
brew services stop mongodb-community
brew uninstall mongodb-community
brew cleanup
rm -rf ~/Library/LaunchAgents/homebrew.mxcl.mongodb-community*
rm -rf /usr/local/var/mongodb*
brew install mongodb-community
brew services start mongodb-community
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.mongodb-community.plist
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb-community.plist
brew services stop mongodb-community
vim /usr/local/etc/mongod.conf
: <<'END_COMMENT'
net:
bindIp: 127.0.0.1,10.19.83.110
END_COMMENT
brew services start mongodb-community
brew services list
|
|
Mongosh
|
Mongosh | |
|---|---|
mongosh
: <<'END_COMMENT'
test> show databases;
admin 40.00 KiB
config 12.00 KiB
local 72.00 KiB
test> use local
switched to db local
local> show collections;
startup_log
local> db.stats();
{
db: 'local',
collections: 1,
views: 0,
objects: 2,
avgObjSize: 2370,
dataSize: 4740,
storageSize: 36864,
indexes: 1,
indexSize: 36864,
totalSize: 73728,
scaleFactor: 1,
fsUsedSize: 296942022656,
fsTotalSize: 371537641472,
ok: 1
}
local>
END_COMMENT
|
|
Compass
|
Compass |
|---|
sudo wget -c https://downloads.mongodb.com/compass/mongodb-compass_1.44.5_amd64.deb -P ${HOME}/Downloads
sudo dpkg -i ${HOME}/Downloads/mongodb-compass_1.44.5_amd64.deb
sudo apt install ${HOME}/Downloads/mongodb-compass_1.44.5_amd64.deb
sudo rm -rf ${HOME}/Downloads/mongodb-compass_1.44.5_amd64.deb
sudo apt --fix-broken install
sudo apt install -f
|
Knowledge
|
Knowledge | |
|---|---|
sudo apt remove --auto-remove mc
sudo apt purge --auto-remove mc
sudo apt purge mc
|
apt list --installed|grep mongodb-compass
sudo apt remove mongodb-compass
mongosh --quiet
|
use admin
show databases
show collections
|
show users;
db.getUsers();
db.dropUser("chorke", {w: "majority", wtimeout: 5000});
|
db.createUser({
user: "chorke",
pwd: "sadaqah!",
roles: [
{ role: "readWrite", db: "Gateway" },
{ role: "readWrite", db: "Onboarding" },
{ role: "readWrite", db: "OnboardingForm" }
]
});
|
|
References
|
References | ||
|---|---|---|