Ubuntu18.04 安装配置mongodb

Posted 市丸银

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu18.04 安装配置mongodb相关的知识,希望对你有一定的参考价值。

一、安装

# 1. 更新
sudo apt-get update
# 2. 安装
sudo apt-get install -y mongodb
# 3. 查看是否安装成功
# a. 服务状态
sudo systemctl status mongodb
sudo service mongodb status
# 状态是active 即可
# b. 实际连接数据库
mongo --eval \'db.runCommand({ connectionStatus: 1 })\'
# 4. 设置开机启动
sudo systemctl enable mongdb
# 5. 开启端口
sudo ufw allow 27017
sudo ufw status

二、开启远程连接

# 1. 编辑配置文件
sudo vim /etc/mongodb.conf
bindIP = 0.0.0.0

# 2. 重启服务
sudo systemctl restart mongodb

 

 

以上是关于Ubuntu18.04 安装配置mongodb的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu 18.04 (Bionic) 简单快速的安装mongodb

ubuntu18.04安装mongoDB 4.0

Ubuntu18.04安装MongoDB

ubuntu18.04 安装mongodb 数据库

Ubuntu 18.04安装MongoDB 4.0(社区版)

Ubuntu18.04下安装mongoDB数据库