MongoDB: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
 
(33 intermediate revisions by the same user not shown)
Line 1: Line 1:
<source lang="bash">
==Raspbian==
<syntaxhighlight lang="bash">
apt install mongodb
apt install mongodb
nano /etc/mongodb.conf
nano /etc/mongodb.conf
: <<'END_COMMENT'
: <<'END_COMMENT'
bind_ip = 127.0.0.1
bind_ip = 127.0.0.1,10.19.83.105
port = 27017
END_COMMENT
END_COMMENT


Line 9: Line 11:
systemctl enable mongodb
systemctl enable mongodb
systemctl status mongodb
systemctl status mongodb
mongo
</syntaxhighlight>
 
==Debian==
<syntaxhighlight lang="bash">
sudo apt install gnupg
sudo mkdir -p /etc/apt/keyrings
 
curl -fsSL https://pgp.mongodb.com/server-7.0.asc \
| sudo gpg --dearmor -o /usr/share/keyrings/mongodb-server-7.0.gpg
 
cat << EOF | sudo tee /etc/apt/sources.list.d/mongodb-org-7.0.list >/dev/null
deb [arch=$(dpkg --print-architecture)\
signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg]\
https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse
EOF
 
sudo apt update
sudo apt install mongodb-org
 
ps --no-headers -o comm 1
sudo systemctl status mongod
sudo systemctl daemon-reload
mongosh
</syntaxhighlight>
 
==MacOS==
<syntaxhighlight lang="bash">
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'
: <<'END_COMMENT'
> show databases;
net:
local 0.03125GB
  bindIp: 127.0.0.1,10.19.83.110
> use local
END_COMMENT
brew services start mongodb-community
brew services list
</syntaxhighlight>
 
==Mongosh==
<syntaxhighlight lang="bash">
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
switched to db local
> show collections;
local> show collections;
startup_log
startup_log
> db.stats();
local> db.stats();
{
{
"db" : "local",
  db: 'local',
"collections" : 2,
  collections: 1,
"objects" : 2,
  views: 0,
"avgObjSize" : 530,
  objects: 2,
"dataSize" : 1060,
  avgObjSize: 2370,
"storageSize" : 10493952,
  dataSize: 4740,
"numExtents" : 2,
  storageSize: 36864,
"indexes" : 0,
  indexes: 1,
"indexSize" : 0,
  indexSize: 36864,
"fileSize" : 16777216,
  totalSize: 73728,
"nsSizeMB" : 16,
  scaleFactor: 1,
"dataFileVersion" : {
  fsUsedSize: 296942022656,
"major" : 4,
  fsTotalSize: 371537641472,
"minor" : 5
  ok: 1
},
"ok" : 1
}
}
>
local>  
END_COMMENT
END_COMMENT
</source>
</syntaxhighlight>
 
==Compass==
<syntaxhighlight lang="bash">
sudo wget -c https://downloads.mongodb.com/compass/mongodb-compass_1.43.5_amd64.deb -P ${HOME}/Downloads
sudo dpkg -i    ${HOME}/Downloads/mongodb-compass_1.43.5_amd64.deb
sudo apt install ${HOME}/Downloads/mongodb-compass_1.43.5_amd64.deb
sudo rm  -rf    ${HOME}/Downloads/mongodb-compass_1.43.5_amd64.deb
sudo apt --fix-broken install
sudo apt install -f
</syntaxhighlight>
 
==Knowledge==
{|
|valign="top"|
sudo apt remove --auto-remove mc
sudo apt purge  --auto-remove mc
sudo apt purge mc
 
|valign="top"|
apt list --installed|grep mongodb-compass
sudo apt remove mongodb-compass
 
|valign="top"|
 
|-
|colspan="3"|
----
|-
| valign="top" |
 
| valign="top" |
 
| valign="top" |
 
|}


==References==
==References==
* [https://andyfelong.com/2019/01/mongodb-3-2-64-bit-running-on-raspberry-pi-3-with-caveats/ MongoDB running on a Raspberry Pi]
{|
| valign="top" |
* [https://www.mongodb.com/try/download/compass MongoDB » Download » Compass (GUI)]
* [https://www.mongodb.com/try/download/shell MongoDB » Download » Shell (CLI)]
* [https://hevodata.com/learn/mongodb-compass-ubuntu/ MongoDB » Compass » On Ubuntu]
* [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://docs.mongodb.com/manual/tutorial/install-mongodb-on-os-x/ MongoDB » On macOS]
* [[Homebrew]]
* [[Base64]]
* [[JQ Tool]]
* [[LuaJIT]]
* [[Wrk]]
 
| valign="top" |
 
| valign="top" |
 
|-
| colspan="3" |
----
|-
| valign="top" |
* [https://www.mongodb.com/developer/products/mongodb/mongodb-schema-design-best-practices/ MongoDB » Schema Design Best Practices]
* [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/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]
* [[UFW]]
 
| valign="top" |
 
| valign="top" |
 
|}

Latest revision as of 23:52, 30 September 2024

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

sudo apt install gnupg
sudo mkdir -p /etc/apt/keyrings

curl -fsSL https://pgp.mongodb.com/server-7.0.asc \
| sudo gpg --dearmor -o /usr/share/keyrings/mongodb-server-7.0.gpg

cat << EOF | sudo tee /etc/apt/sources.list.d/mongodb-org-7.0.list >/dev/null
deb [arch=$(dpkg --print-architecture)\
 signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg]\
 https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse
EOF

sudo apt update
sudo apt install mongodb-org

ps --no-headers -o comm 1
sudo systemctl status mongod
sudo systemctl daemon-reload
mongosh

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
: <<'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

sudo wget -c https://downloads.mongodb.com/compass/mongodb-compass_1.43.5_amd64.deb -P ${HOME}/Downloads
sudo dpkg -i     ${HOME}/Downloads/mongodb-compass_1.43.5_amd64.deb
sudo apt install ${HOME}/Downloads/mongodb-compass_1.43.5_amd64.deb
sudo rm  -rf     ${HOME}/Downloads/mongodb-compass_1.43.5_amd64.deb
sudo apt --fix-broken install
sudo apt install -f

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

References