数据库的种类很多,之前接触最多的就是MySQL数据库,还有redis或memcasech,今天就开始学习下MongoDB,一定要知其然并知其所以然,故之。。。
一、MongoDB是什么?
mongodb 是一个基于分布式文件存储的数据库。由 C++ 语言编写。旨在为 WEB 应用提供可扩展的高性能数据存储解决方案。
MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。
二、mongoDB的部署过程
1、添加yum源
vi /etc/yum.repos.d/10gen.repo [10gen] name=10gen Repository baseurl=https://mirrors.aliyun.com/mongodb/yum/redhat/6/mongodb-org/3.4/x86_64/ gpgcheck=0
2、安装MongoDB和相关工具
yum install -y mongodb-org
3、启动MongoDB
/etc/init.d/mongod start
4、验证MongoDB是否启动成功
cat /var/log/mongodb/mongod.log 查看是否有一句:[initandlisten] waiting for connections on port <port> 其中<port>是在/etc/mongod.conf中配置的,默认情况下是27017端口。 还有另一种方式:;
5、使MongoDB开机自动启动
chkconfig mongod on
6、重启MongoDB
/etc/init.d/mongod restart
三、开启权限认证
首先对MongoDB权限,简单的介绍下
c.1 MongoDB是没有默认管理员账号的,所以要先添加管理员账号,在开启权限认证。
c.2 切换到admin数据库,添加的账号才是管理员的账号。
c.3 用户只能在用户所在的数据库登录,包括管理员账号。
c.4 管理员可以管理所有的数据库,但是不能直接管理其它数据库,要先在admin数据库中认证才可以,也是为了 安全性考虑。
详细配置如下
1,创建用户,设置密码
> use admin; > db.createUser({user:"admin",pwd:"admin",roles:["root"]})
2,测试用户是否正常
> db.auth('admin','admin') 1 ##(1正常,0异常)
3,更改配置文件
在配置文件中将
#security:
中的#
去掉,并在其下一行,空两个空格,加上authorization: enabled
,如下
security: authorization: enabled
注意:authorization: enabled
中冒号后加一个空格,这是yaml语法所要求的
四、远程连接配置
注意:老版本的图形界面管理软件可能不支持新版本的数据库,测试之前请保证软件是可用的
在配置文件中将
bindIp: 127.0.0.1
注释掉(即在句首加#
)
#bindIp: 127.0.0.1
重启数据库
/etc/init.d/mongod restart
也可以根据自己的需求,设置不同的数据存放目录
五、更改数据目录
默认的数据存储目录是/var/lib/mongodb
,假设我们的目的路径是/home/mongodb
关闭数据库
/etc/init.d/mongodb stop
在配置文件中将storage.dbPath
项设置为目的路径,修改后如下
storage: dbPath: /home/mongodb
将原目录下的文件复制到新目录中:
cp -r /var/bin/mongodb/* /home/mongodb/
将mongod.lock
文件删除后启动数据库
rm /home/mongodb/mongod.locksudo /etc/init.d/mongod start
测试远程连接
注意:
当你的mongo
命令报错,连接失败时,请尝试删除数据存储目录下的mongod.lock
文件后,重启mongodb数据库
六、配置文件详解: /etc/mongod.conf
[plain] view plain copy # mongo.conf #where to log logpath=/var/log/mongo/mongod.log logappend=true #以追加方式写入日志 # fork and run in background fork = true #port = 27017 #端口 dbpath=/var/lib/mongo #数据库文件保存位置 directoryperdb=true # Enables periodic logging of CPU utilization and I/O wait #启用定期记录CPU利用率和 I/O 等待 #cpu = true # Turn on/off security. Off is currently the default # 是否以安全认证方式运行,默认是不认证的非安全方式 #noauth = true #auth = true # Verbose logging output. # 详细记录输出 #verbose = true # Inspect all client data for validity on receipt (useful for # developing drivers)用于开发驱动程序时的检查客户端接收数据的有效性 #objcheck = true # Enable db quota management 启用数据库配额管理,默认每个db可以有8个文件,可以用quotaFiles参数设置 #quota = true # 设置oplog记录等级 # Set oplogging level where n is # 0=off (default) # 1=W # 2=R # 3=both # 7=W+some reads #oplog = 0 # Diagnostic/debugging option 动态调试项 #nocursors = true # Ignore query hints 忽略查询提示 #nohints = true # 禁用http界面,默认为localhost:28017 # Disable the HTTP interface (Defaults to localhost:27018).这个端口号写的是错的 #nohttpinterface = true # 关闭服务器端脚本,这将极大的限制功能 # Turns off server-side scripting. This will result in greatly limited # functionality #noscripting = true # 关闭扫描表,任何查询将会是扫描失败 # Turns off table scans. Any query that would do a table scan fails. #notablescan = true # 关闭数据文件预分配 # Disable data file preallocation. #noprealloc = true # 为新数据库指定.ns文件的大小,单位:MB # Specify .ns file size for new databases. # nssize = <size> # Accout token for Mongo monitoring server. #mms-token = <token> # mongo监控服务器的名称 # Server name for Mongo monitoring server. #mms-name = <server-name> # mongo监控服务器的ping 间隔 # Ping interval for Mongo monitoring server. #mms-interval = <seconds> # Replication Options 复制选项 # in replicated mongo databases, specify here whether this is a slave or master 在复制中,指定当前是从属关系 #slave = true #source = master.example.com # Slave only: specify a single database to replicate #only = master.example.com # or #master = true #source = slave.example.com