Ubuntu16.04安装MongoDB指南
$ sudo apt update
$ sudo apt dist-upgrade
$ sudo apt autoremove
$ sudo apt clean
sudo apt-get install mongodb
mongodb默认是监听在127.0.0.1端口的,要开启外网连接,需要修改mongodb配置文件:
vim /etc/mongodb.conf
bind_ip = 127.0.0.1
修改为bind_ip = 0.0.0.0
使用工具robo 3t,添加连接信息
mongodb默认是不开启密码登录的,如果要开启,修改mongodb配置文件:
取消#auth = true
前面的注释,并重启mongodbservice mongodb restart
添加用户信息:
use test_db;
db.createUser({user:'cool', pwd:'cool', roles: [ { role: "readWrite", db: "test_db" } ]});
连接方式跟上面类似,唯一不同的是要添加authentication,指定database,username,password,以及选择Mongodb-CR验证方式