mongodb单机安装

一. 下载

从mongodb官方网站下载,下载前需要测试一个账号,按照提示填写信息就好

Try MongoDB Atlas Products | MongoDB

下载包名称:mongodb-linux-x86_64-rhel70-4.0.3.tgz

二. 安装

下载之后,把压缩包拷贝到服务器opt目录下,然后解压

#cd /opt

#tar -zxvf mongodb-linux-x86_64-rhel70-4.0.3.tgz

#mkdir mongodb-linux-x86_64-rhel70-4.0.3/{data,log}

三. 添加配置文件

在mongodb家目录下创建一个配置文件mongodb.conf,添加内容如下

systemLog:

verbosity: 0

destination: file

path: "/opt/mongodb/log/mongodb.log"

logAppend: true

timeStampFormat: iso8601-local

storage:

dbPath: "/opt/mongodb/data"

engine: wiredTiger

wiredTiger:

engineConfig:

journalCompressor: snappy

directoryPerDB: true

journal:

enabled: true

processManagement:

fork: true

net:

bindIp: 0.0.0.0

port: 27017

security:

authorization: disabled

setParameter:

enableLocalhostAuthBypass: false

四. 启动服务

#./bin/mongod -f ./mongodb.conf

五. 验证服务

使用以下命令检查27017端口是否存在,存在则表示服务启动成功

#netstat -anop | grep 27017

六. 关闭服务

#pkill mongodb

你可能感兴趣的:(大数据,mongodb)