mongodb3.6.4安装

Posted

tags:

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

groupadd -g 800 mongodb
useradd -u 801 -g mongodb mongodb
cd /usr/local/
mkdir mongodb
cd mongodb/
#mkdir bin
mkdir conf
mkdir log
mkdir data

cd /root/
wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel62-3.6.4.tgz
tar xf mongodb-linux-x86_64-rhel62-3.6.4.tgz
cd mongodb-linux-x86_64-rhel62-3.6.4
cp * /usr/local/mongodb
cd /usr/local
chown -R mongodb.mongodb mongodb/

cd /root/
vi .bash_profile
export PATH=/mongodb/bin:$PATH
source .bash_profile

vim /usr/local/mongodb/conf/mongodb.conf
logpath=/usr/local/mongodb/log/mongodb.log
dbpath=/usr/local/mongodb/data
#directoryperdb=true
port=27017
bind_ip=0.0.0.0
logappend=true
fork=true
cpu=true
auth=true

netstat -nputl
mongod -f /usr/local/mongodb/conf/mongodb.conf
mongod --shutdown -f /usr/local/mongodb/conf/mongodb.conf

mongo
db
show dbs

use admin
db.auth("admin","xld.2018")
db.system.users.find()
db.createUser({user:"admin",pwd:"xld.2018",roles:["root"]}) 创建超级管理员
db.createUser({user:"xwgl",pwd:"xld.2018",roles:[{ role: "dbAdmin", db: "xwgl" }]}) 创建单个数据库管理员

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

macOS High Sierra 10.13.3 上 XAMPP 7.2.4 的 mongodb 3.6.4

Mongoose 5.0.15 / MongoDB 3.6.4 转换为数组失败的值 [NaN,NaN]

window怎么安装mongodb

mongodb模块怎么安装

windows 7怎么安装mongodb

如何查看mongodb是不是安装成功