安装

1.下载安装包

wget http://fastdl.mongodb.org/linux/mongodb-linux-i686-1.8.2.tgz

下载完成后解压缩压缩包

tar zxf mongodb-linux-i686-1.8.2.tgz

2. 安装准备

将mongodb移动到/usr/local/server/mongdb文件夹

mv mongodb-linux-i686-1.8.2 /usr/local/mongodb

创建数据库文件夹与日志文件

mkdir /usr/local/mongodb/data
touch /usr/local/mongodb/logs

3. 设置开机自启动

将mongodb启动项目追加入rc.local保证mongodb在服务器开机时启动

echo "/usr/local/server/mongodb/bin/mongod --dbpath=/usr/local/server/mongodb/data –logpath=/usr/local/server/mongodb/logs –logappend  --auth –port=27017" >> /etc/rc.local

4. 启动mongodb

cd到mongodb目录下的bin文件夹启动mongodb
//下面这个是需要权限的登录方式, 用户连接需要用户名和密码

/usr/local/server/mongodb/bin/mongod --dbpath=/usr/local/server/mongodb/data --logpath=/usr/local/server/mongodb/logs --logappend  --auth--port=27017 --fork

//这个是不需要密码的

/usr/local/server/mongodb/bin/mongod --dbpath=/usr/local/server/mongodb/data --logpath=/usr/local/server/mongodb/logs --logappend  --port=27017 --fork

5. 参数解释: --dbpath 数据库路径(数据文件)

  • 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 <server:port> 当为从时,指定主的地址和端口
  • 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服务器

6. 进入数据库的CLI管理界面

cd到mongodb目录下的bin文件夹,执行命令./mongo
运行如下:

[root@namenode mongodb]# ./bin/mongo
MongoDB shell version: 1.8.2
connecting to: test
> use test;
switched to db test

若数据库出现如不能连上,则是一个data目录下的mongod.lock文件的问题,可以用如下的修复的命令,

mongod --repair

卸载

1. 停止服务:

sudo service mongod stop

2. 删除软件包:

sudo yum erase $(rpm -qa | grep mongodb-org)

3.删除数据和日志目录:

sudo rm -r /var/log/mongodb
sudo rm -r /var/lib/mongo

作者: 极客教程 
链接:https://www.imooc.com/article/14770
来源:慕课网

linux上mongodb的安装与卸载的更多相关文章

  1. Linux上MongoDB的安装与配置

    长话短说,一共有两种方法.(我随便选了一个发行版Mint) 一.apt-get方法 官网上说的很清楚: http://docs.mongodb.org/manual/tutorial/install- ...

  2. 大数据学习——Linux上常用软件安装

    4.1 Linux系统软件安装方式 Linux上的软件安装有以下几种常见方式: 1.二进制发布包 软件已经针对具体平台编译打包发布,只要解压,修改配置即可 2.RPM发布包 软件已经按照redhat的 ...

  3. Linux上的软件安装有哪些方式?

    Linux上的软件安装有以下几种常见方式介绍 1.二进制发布包 软件已经针对具体平台编译打包发布,只要解压,修改配置即可 2.RPM包 软件已经按照redhat的包管理工具规范RPM进行打包发布,需要 ...

  4. 【Oracle 集群】11G RAC 知识图文详细教程之RAC在LINUX上使用NFS安装前准备(六)

    RAC在LINUX上使用NFS安装前准备(六) 概述:写下本文档的初衷和动力,来源于上篇的<oracle基本操作手册>.oracle基本操作手册是作者研一假期对oracle基础知识学习的汇 ...

  5. Linux下MongoDB服务安装

    Linux下MongoDB服务安装 MongoDB是一个基于分布式文件存储的数据库.由C++语言编写.旨在为WEB应用提供可扩展的高性能数据存储解决方案.MongoDB是一个介于关系数据库和非关系数据 ...

  6. 怎么在Linux上下载并安装ESET NOD32 Antivirus 4桌面版

    转自:怎么在Linux上下载并安装ESET NOD32 Antivirus 4桌面版 下载并安装ESET NOD32 Antivirus 4的Linux桌面版,根据下面的步骤一步一步的来: I.  下 ...

  7. JProfiler远程监控Linux上Tomcat的安装过程细讲(步骤非常详细!!!)

    JProfiler远程监控Linux上Tomcat的安装过程细讲(步骤非常详细!!!) 1.文件准备: 服务器:CentOS Linux release 7.3.1611 (Core)     Apa ...

  8. 转载:【Oracle 集群】RAC知识图文详细教程(六)--RAC在LINUX上使用NFS安装前准备

    文章导航 集群概念介绍(一) ORACLE集群概念和原理(二) RAC 工作原理和相关组件(三) 缓存融合技术(四) RAC 特殊问题和实战经验(五) ORACLE 11 G版本2 RAC在LINUX ...

  9. Linux上用mvn安装node.js

    Linux上用mvn安装node.js 上一篇blog简略的讲了ubuntu系统的安装,接下来讲讲Ubuntu上的基于node.js的web开发环境的搭建. Node在快速构建网络服务有着极大的优势, ...

随机推荐

  1. 给Ubuntu软件升级命令

    以非root用户更新系统 sudo: sudo是linux系统管理指令,是允许系统管理员让普通用户执行一些或者全部的root命令的一个工具,如halt,reboot,su等等.这样不仅减少了root用 ...

  2. xdoj1321----简单搜索

    1321: 营救公主 时间限制: 1 Sec  内存限制: 128 MB提交: 156  解决: 37[提交][状态][讨论版] 题目描述 DSKer今天又做梦了,他的睡眠质量一直很差.他梦见他化身骑 ...

  3. python开发day02

    一 while循环 while 条件 代码块(循环体)  #:  判断条件是否为真,如果是真,则执行代码块, 然后再次回头判断条件是否为真,如果为真,则只执行代码块.......知道循环的判断出代码为 ...

  4. C与C++中实现 gotoxy()函数

    #include <stdio.h> #include <windows.h> void gotoxy(int x, int y) { COORD pos = {x,y}; H ...

  5. C# Dictionary源码剖析---哈希处理冲突的方法有:开放定址法、再哈希法、链地址法、建立一个公共溢出区等

    C# Dictionary源码剖析 参考:https://blog.csdn.net/exiaojiu/article/details/51252515 http://www.cnblogs.com/ ...

  6. acm 2084

    ////////////////////////////////////////////////////////////////////////////////#include<iostream ...

  7. 杜教BM

    #include <algorithm> #include <iterator> #include <iostream> #include <cstring& ...

  8. shell excute mongo query command

    use shell command method one: #!/bin/bash ] then echo 'Please input cid' exit fi HOST= mongo ${HOST} ...

  9. Centos7安装teamviewer 32/64位

    centos7安装teamviewer teamviewer安装包,自己去官网下吧,不用找了,估摸着就没有Centos7 64位的 所以直接下centos teamviewer 32位那个rpm包吧 ...

  10. 100 webhook implementations

    转自: https://streamdata.io/blog/100-webhook-implementations/  很不错的整理 What is the scope of the event-d ...