在centos中安装mongodb

环境:

[root@test1 yum.repos.d]# uname -a
Linux test1 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linu
[root@test1 yum.repos.d]# cat /etc/redhat-release 
CentOS release 6.5 (Final)

Step 1: 添加Mongodb仓库

新建mongodb.repo文件

vim /etc/yum.repos.d/mongodb.repo

复制以下内容到此文件,可以先验证下base _url的链接是否有效

[mongodb]
name=MongoDB Repository
baseurl=http://downloads-distro.  mongodb.org/repo/redhat/os/x86_64/
gpgcheck=0
enabled=1

32bit 系统复制内容要换成如下所示

[mongodb]
name=MongoDB Repository
baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/i686/
gpgcheck=0
enabled=1

Step 2 安装mongodb

yum install mongo-10gen mongo-10gen-server

Step 3: 运行mongodb

启动mongodb服务(其实一旦安装完成就自动启动了)

service mongod start

检查mongodb服务开启状态

service mongod status

统计mongodb运行状态

mongostat

进入mongo命令行

mongo

关闭mongodb服务

service mongod stop
    原文作者:东皇Amrzs
    原文地址: https://www.jianshu.com/p/feef4df9efdc
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞