CentOS-6.8+Mongodb 实战

前端之家收集整理的这篇文章主要介绍了CentOS-6.8+Mongodb 实战前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

数据库的种类很多,之前接触最多的就是MysqL数据库,还有redis或memcasech,今天就开始学习下MongoDB,一定要知其然并知其所以然,故之。。。

一、MongoDB是什么?

wKioL1l-2o7BTGiCAAAM45sYOEA484.png

官方网站:https://www.mongodb.com/

mongodb是一个基于分布式文件存储的数据库。由 C++ 语言编写。旨在为 WEB 应用提供可扩展的高性能数据存储解决方案。

MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。

二、mongoDB的部署过程

1、添加yum源

vi/etc/yum.repos.d/10gen.repo
[10gen]
name=10genRepository
baseurl=https://mirrors.aliyun.com/mongodb/yum/redhat/6/mongodb-org/3.4/x86_64/
gpgcheck=0

2、安装MongoDB和相关工具

yuminstall-ymongodb-org

3、启动MongoDB

/etc/init.d/mongodstart

4、验证MongoDB是否启动成功

cat/var/log/mongodb/mongod.log
查看是否有一句:[initandlisten]waitingforconnectionsonport<port>
其中<port>是在/etc/mongod.conf中配置的,默认情况下是27017端口。
还有另一种方式:;

5、使MongoDB开机自动启动

chkconfigmongodon

6、重启MongoDB

/etc/init.d/mongodrestart

三、开启权限认证

首先对MongoDB权限,简单的介绍下

c.1 MongoDB是没有默认管理员账号的,所以要先添加管理员账号,在开启权限认证。

 c.2 切换到admin数据库添加的账号才是管理员的账号。

 c.3 用户只能在用户所在的数据库登录包括管理员账号。

 c.4 管理员可以管理所有的数据库,但是不能直接管理其它数据库,要先在admin数据库中认证才可以,也是为了 安全性考虑。


详细配置如下

1,创建用户,设置密码

>db.createUser({user:"admin",pwd:"admin",roles:["root"]})

2,测试用户是否正常

>db.auth('admin','admin')
1##(1正常,0异常)

3,更改配置文件

配置文件中将

#security:

中的#去掉,并在其下一行,空两个空格,加上authorization: enabled,如下

security:
authorization:enabled

注意:中冒号后加一个空格,这是yaml语法所要求的


四、远程连接配置

注意:老版本的图形界面管理软件可能不支持新版本的数据库,测试之前请保证软件是可用的

配置文件中将

bindIp:127.0.0.1

注释掉(即在句首加#

#bindIp:127.0.0.1

重启数据库

/etc/init.d/mongodrestart

也可以根据自己的需求,设置不同的数据存放目录


五、更改数据目录

默认的数据存储目录是/var/lib/mongodb,假设我们的目的路径是/home/mongodb

关闭数据库

/etc/init.d/mongodbstop

配置文件中将storage.dbPath项设置为目的路径,修改后如下

storage:dbPath:/home/mongodb

将原目录下的文件复制到新目录中:

cp-r/var/bin/mongodb/*/home/mongodb/

mongod.lock文件删除后启动数据库

rm/home/mongodb/mongod.locksudo
/etc/init.d/mongodstart

测试远程连接

注意:

当你的mongo命令报错,连接失败时,请尝试删除数据存储目录下的mongod.lock文件后,重启mongodb数据库


六、配置文件详解: /etc/mongod.conf


[plain]viewplaincopy
#mongo.conf

#wheretolog
logpath=/var/log/mongo/mongod.log

logappend=true#以追加方式写入日志

#forkandruninbackground
fork=true

#port=27017#端口

dbpath=/var/lib/mongo#数据库文件保存位置
directoryperdb=true
#EnablesperiodicloggingofcpuutilizationandI/Owait
#启用定期记录cpu利用率和I/O等待
#cpu=true

#Turnon/offsecurity.Offiscurrentlythedefault
#是否以安全认证方式运行,默认是不认证的非安全方式
#noauth=true
#auth=true

#Verboseloggingoutput.
#详细记录输出
#verbose=true

#Inspectallclientdataforvalidityonreceipt(usefulfor
#developingdrivers)用于开发驱动程序时的检查客户端接收数据的有效性
#objcheck=true

#Enabledbquotamanagement启用数据库配额管理,默认每个db可以有8个文件,可以用quotaFiles参数设置
#quota=true
#设置oplog记录等级
#Setoplogginglevelwherenis
#0=off(default)
#1=W
#2=R
#3=both
#7=W+somereads
#oplog=0

#Diagnostic/debuggingoption动态调试项
#nocursors=true

#Ignorequeryhints忽略查询提示
#nohints=true
#禁用http界面,默认为localhost:28017
#DisabletheHTTPinterface(Defaultstolocalhost:27018).这个端口号写的是错的
#nohttpinterface=true

#关闭服务器端脚本,这将极大的限制功能
#Turnsoffserver-sidescripting.Thiswillresultingreatlylimited
#functionality
#noscripting=true
#关闭扫描表,任何查询将会是扫描失败
#Turnsofftablescans.Anyquerythatwoulddoatablescanfails.
#notablescan=true
#关闭数据文件预分配
#Disabledatafilepreallocation.
#noprealloc=true
#为新数据库指定.ns文件的大小,单位:MB
#Specify.nsfilesizefornewdatabases.
#nssize=<size>

#AccouttokenforMongomonitoringserver.
#mms-token=<token>
#mongo监控服务器的名称
#ServernameforMongomonitoringserver.
#mms-name=<server-name>
#mongo监控服务器的ping间隔
#PingintervalforMongomonitoringserver.
#mms-interval=<seconds>

#ReplicationOptions复制选项

#inreplicatedmongodatabases,specifyherewhetherthisisaslaveormaster在复制中,指定当前是从属关系
#slave=true
#source=master.example.com
#Slaveonly:specifyasingledatabasetoreplicate
#only=master.example.com
#or
#master=true
#source=slave.example.com
原文链接:https://www.f2er.com/centos/376780.html

猜你在找的CentOS相关文章