How to listen only to localhost on MongoDB

后端 未结 4 865
一生所求
一生所求 2020-12-13 02:11

MongoDB Suggests that the easy way to handle security is to run it in a trusted environment, given that, \"in such a configuration, one must be sure only trusted machines ca

相关标签:
4条回答
  • 2020-12-13 02:36

    Note that although it didn't appear in the documentation last time I checked, you can also put this setting in the .conf file (vs. command line).

    No setting = bind to all ips.

    0 讨论(0)
  • 2020-12-13 02:58

    As Andreas mentioned in a round-about way:

    mongod --bind_ip 127.0.0.1
    
    0 讨论(0)
  • 2020-12-13 02:59

    Add the following line into mongodb.conf:

    bind_ip = 127.0.0.1
    

    As @Josh Rickard stated in comments: don't forget to restart the process after updating the config file:

    service mongodb restart
    
    0 讨论(0)
  • 2020-12-13 03:01

    No one mentioned the location of the mongodb.conf file which is /etc/mongodb.conf. Double check before running the following commands.

    echo "bind_ip = 127.0.0.1" >> /etc/mongodb.conf
    service mongodb restart
    
    0 讨论(0)
提交回复
热议问题