Ubuntu 安裝MongoDB

Ubuntu16.04安裝MongoDB指南mongodb

系統初始化

$ sudo apt update
$ sudo apt dist-upgrade
$ sudo apt autoremove
$ sudo apt clean

安裝mongodb

sudo apt-get install mongodb

mongodb默認是監聽在127.0.0.1端口的,要開啓外網鏈接,須要修改mongodb配置文件:vim

vim /etc/mongodb.conf

bind_ip = 127.0.0.1 修改成bind_ip = 0.0.0.0bash

鏈接mongodb

使用工具robo 3t,添加鏈接信息工具

啓用密碼訪問

mongodb默認是不開啓密碼登陸的,若是要開啓,修改mongodb配置文件:rest

取消#auth = true前面的註釋,並重啓mongodbservice mongodb restartcode

添加用戶信息:ip

use test_db;
db.createUser({user:'cool', pwd:'cool', roles: [ { role: "readWrite", db: "test_db" } ]});

鏈接

鏈接方式跟上面相似,惟一不一樣的是要添加authentication,指定database,username,password,以及選擇Mongodb-CR驗證方式
rem

相關文章
相關標籤/搜索