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