linux安装mongodb

Posted SE

tags:

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

1. 下载mongodb包,官方地址

$ wget http://downloads.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1804-debugsymbols-4.0.16.tgz

$ tar -xvzf mongodb-linux-x86_64-ubuntu1804-debugsymbols-4.0.16.tgz

2. 创建数据存储目录、工作目录以及日志目录

mv mongodb-linux-x86_64-ubuntu1804-debugsymbols-4.0.16 /usr/local/mongodb
cd /usr/local/mongodb/
mkdir conf
mkdir data
mkdir log

配置环境变量/etc/profile:

export MONGODB_HOME=/usr/local/mongodb  
export PATH=$PATH:$MONGODB_HOME/bin 
source /etc/profile
新建配置文件
mongodb.conf
dbpath = /usr/local/mongodb/data/db  #数据存储目录
logpath = /usr/local/mongodb/log/mongodb.log  #日志存储目录
port = 27017 #指定端口号
fork = true  #以守护进程的方式启动,即在后台运行
#auth=true #创建用户后开启
bind_ip = 0.0.0.0  #可以连接的端口号
3 启动
./mongod -f ../config/mongodb.conf
4. 创建root用户
db.createUser({user:"root",pwd:"root",roles:[{ role: "userAdminAnyDatabase",db: "admin" }],mechanisms : ["SCRAM-SHA-1"]})
 

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

Linux Centos 7安装MongoDB(简单!详细!)

Linux CentoS 6.5 yum安装mongoDB

Linux上mongodb开机自启动

linux下怎么安装64位的mongodb

Linux安装MongoDB(简单详细)

linux 安装mongodb