tags: Linux
Ubuntu
MongoDB
MongoDB
- 官方文件,以4.4版為例
wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add - echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list sudo apt-get update sudo apt-get install -y mongodb-org
- MongoDB預設路徑
說明 路徑 應用程式 bin /usr/bin/mongd
設定檔 conf /etc/mongod.conf
資料儲存 dbPath /var/lib/mongodb
日誌 log /var/log/mongodb/mongod.log
- 開啟公司內網權限
sudo vim /etc/mongod.conf
- 加入公司網段
# network interfaces net: port: 27017 bindIp: "127.0.0.1,192.168.10.37"
- 重啟MongoDB
sudo service mongod restart
- 防火牆
sudo ufw allow 27017
- 遠端連線
- MongoDB Compass
- Robo 3T
- dump, restore,其工具位於
C:\Program Files\MongoDB\Tools\100\bin
沒有留言:
張貼留言