依照此篇 Ubuntu 18.04.3 安裝 MongoDB 4.0 安裝完後,
在外部連線時會發生無法連問題,
需要修改mongodb.conf,預設允許連線位置。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
$ sudo nano /etc/mongod.conf // 原本的連線只允許本機 # network interfaces net: port: 27017 bindIp: 127.0.0.1 // 修改成允許所有外部連線ip # network interfaces net: port: 27017 bindIp: 0.0.0.0 // 指定連線ip # network interfaces net: port: 27017 bindIp: 127.0.0.1, 192.168.0.1 |
Reference
https://www.kdzone.net/2017/04/mongodb-5-allow-remote-access.html