CentOS7配置MongoDB
Posted 飘若飞鸿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7配置MongoDB相关的知识,希望对你有一定的参考价值。
[官网]下载mongodb-linux-x86_64-rhel62-3.4.3.tgz
通过FTP(WinSCP,FileZilla等)工具上传到“/apps”目录
使用解压命令解压到当前目录
tar -zvxf mongodb-linux-x86_64-rhel62-3.4.3.tgz
开启27017端口
firewall-cmd --zone=public --add-port=27017/tcp --permanent (--permanent永久生效,没有此参数重启后失效)
#重新载入
firewall-cmd --reload
创建data文件夹用于存放数据,创建logs文件用于存放日志
cd mongodb-linux-x86_64-rhel62-3.4.3
mkdir data
touch logs
启动MongoDB
/apps/mongodb-linux-x86_64-rhel62-3.4.3/bin/mongod -dbpath=/apps/mongodb-linux-x86_64-rhel62-3.4.3/data -logpath=/apps/mongodb-linux-x86_64-rhel62-3.4.3/logs --fork --auth
创建超级用户
cd /apps/mongodb-linux-x86_64-rhel62-3.4.3/bin
./mongo
use admin
db.createUser(
... {
... user: "admin",
... pwd: "admin",
... roles: [ { role: "root", db: "admin" } ]
... }
... )
登陆admin用户
db.auth(‘admin‘,‘admin‘);
创建登陆用户
use test
db.createUser(
... {
... user: "test",
... pwd: "test",
... roles: [ { role: "readWrite", db: "test" } ]
... }
... )
设置开机启动
#设置开机启动
#修改/etc/下的rc.local添加如下命令
/apps/mongodb-linux-x86_64-rhel62-3.4.3/bin/mongod -dbpath=/apps/mongodb-linux-x86_64-rhel62-3.4.3/data -logpath=/apps/mongodb-linux-x86_64-rhel62-3.4.3/logs --fork --auth
以上是关于CentOS7配置MongoDB的主要内容,如果未能解决你的问题,请参考以下文章