标题 IDEA连接MongoDB报com.mongodb.MongoSocketOpenException: Exception opening socket
报这样的错是因为MongoDB在3.6版本之后把bind_id的值默认为localhost,就是你的电脑的ip地址当你的电脑ip给虚拟机ip不一样时就报这样的错有下面2种解决方案 方案一在conf/Mongodb.conf里添加bind_ip=0.0.0.0,添加这个参数是让任何的ip可以连接MongoDB
port
=27017
dbpath
=data/db
logpath
=log/mongodb.log
fork
=true
replSet
=rs0
bind_ip
=0.0.0.0
方案二