Linux下安装配置Mongdb数据库

前言

        因项目需求,要求在Linux服务器下搭建Mongodb数据库。MongoDB是一种NoSQL 数据库,其灵活的数据存储方式,备受当前IT从业人员的青睐。MongonDB很好的实现了面向对象的思想,其支持的查询语言非常强大,语法类似于面向对象的查询语言,几乎可以实现类似关系数据库单表查询的绝大部分功能,而且还支持对数据建立索引。
        以下小编介绍一下如何在Linux 服务器下配置Mongodb数据库。

安装包

        下载安装包,并解压 tgz(以下演示的是64位Linux上的安装过程)
            Ps:Xshell可以在Windows 界面下用来访问远端不同系统下的服务器,从而比较好的达到远程控制终端的目的。
        将下载下来的mongodb压缩文件放在指定位置,小编放在/usr/software文件下。

[root@MGM1 ~]# cd //usr/software
[root@MGM1 software]# tar -zxvf mongodb-linux-x86_64-rhel62-3.0.7.tgz           #解压
[root@MGM1 software]# mv mongodb-linux-x86_64-rhel62-3.0.7 /usr/local/mongdb           #将解压包文件拷贝到指定目录

创建数据库目录与日志文件

        MongoDB的数据存储在data目录的db目录下,但是这个目录在安装过程不会自动创建,所以需要自己在xshell 中执行命令,创建日志文件目录与创建data文件夹并创建db目录。

[root@MGM1 mongdb]# touch /logs
#创建MongoDB数据库日志存放路径
[root@MGM1 mongdb]# mkdir -p /data/db
#创建MongoDB数据库存放路径

启动mongdb

        cd到mongdb目录下的bin文件夹启动mongdb

        注意:如果你的数据库目录不是、data/db,可以通过 –dbpath来指定。

[root@MGM1 mongdb]# cd /usr/local/mongdb/bin
[root@MGM1 bin]# ./mongod –dbpath=/usr/local/mongdb/data –logpath=/usr/local/mongdb/logs –logappend –auth –port=27017 –fork

Mongodb数据启动成功

参数解释: ./mongod -h

–logpath 日志文件路径
–master 指定为主机器
–slave 指定为从机器
–source 指定主机器的IP地址
–pologSize 指定日志文件大小不超过64M.因为resync是非常操作量大且耗时,最好通过设置一个足够大的oplogSize来避免resync(默认的 oplog大小是空闲磁盘大小的5%)。
–logappend 日志文件末尾添加
–port 启用端口号
–fork 在后台运行
–only 指定只复制哪一个数据库
–slavedelay 指从复制检测的时间间隔
–auth 是否需要验证权限登录(用户名和密码)
-h [ –help ] show this usage information
–version show version information
-f [ –config ] arg configuration file specifying additional options
–port arg specify port number
–bind_ip arg local ip address to bind listener - all local ips
bound by default
-v [ –verbose ] be more verbose (include multiple times for more
verbosity e.g. -vvvvv)
–dbpath arg (=/data/db/) directory for datafiles 指定数据存放目录
–quiet quieter output 静默模式
–logpath arg file to send all output to instead of stdout 指定日志存放目录
–logappend appnd to logpath instead of over-writing 指定日志是以追加还是以覆盖的方式写入日志文件
–fork fork server process 以创建子进程的方式运行
–cpu periodically show cpu and iowait utilization 周期性的显示cpu和io的使用情况
–noauth run without security 无认证模式运行
–auth run with security 认证模式运行
–objcheck inspect client data for validity on receipt 检查客户端输入数据的有效性检查
–quota enable db quota management 开始数据库配额的管理
–quotaFiles arg number of files allower per db, requires –quota 规定每个数据库允许的文件数
–appsrvpath arg root directory for the babble app server
–nocursors diagnostic/debugging option 调试诊断选项
–nohints ignore query hints 忽略查询命中率
–nohttpinterface disable http interface 关闭http接口,默认是28017
–noscripting disable scripting engine 关闭脚本引擎
–noprealloc disable data file preallocation 关闭数据库文件大小预分配
–smallfiles use a smaller default file size 使用较小的默认文件大小
–nssize arg (=16) .ns file size (in MB) for new databases 新数据库ns文件的默认大小
–diaglog arg 0=off 1=W 2=R 3=both 7=W+some reads 提供的方式,是只读,只写,还是读写都行,还是主要写+部分的读模式
–sysinfo print some diagnostic system information 打印系统诊断信息
–upgrade upgrade db if needed 如果需要就更新数据库
–repair run repair on all dbs 修复所有的数据库
–notablescan do not allow table scans 不运行表扫描
–syncdelay arg (=60) seconds between disk syncs (0 for never) 系统同步刷新磁盘的时间,默认是60s

Replication options:
–master master mode 主复制模式
–slave slave mode 从复制模式
–source arg when slave: specify master as 当为从时,指定主的地址和端口
–only arg when slave: specify a single database to replicate 当为从时,指定需要从主复制的单一库
–pairwith arg address of server to pair with
–arbiter arg address of arbiter server 仲裁服务器,在主主中和pair中用到
–autoresync automatically resync if slave data is stale 自动同步从的数据
–oplogSize arg size limit (in MB) for op log 指定操作日志的大小
–opIdMem arg size limit (in bytes) for in memory storage of op ids指定存储操作日志的内存大小

Sharding options:
–configsvr declare this is a config db of a cluster 指定shard中的配置服务器
–shardsvr declare this is a shard db of a cluster 指定shard服务器

./mongod:权限不够

       小编在搭建的过程中,人生地不熟的的遇到了小小的一点点问题,费了劲,在此分享给大家,希望对博友有所帮助。
在xshel 中一直提示错误 权限不够。
于是乎:输入命令行。
权限不够

       卡哇哇……小编完成啦,看博友的你,一起加油吧!↖(^ω^)↗

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值