zoukankan      html  css  js  c++  java
  • Install MongoDB on Red Hat Enterprise, CentOS, Fedora, or Amazon Linux

    1. Configure the package management system (YUM)

    Create a /etc/yum.repos.d/mongodb.repo file to hold the following configuration information for the MongoDB repository:

    If you are running a 64-bit system, use the following configuration:

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

    If you are running a 32-bit system, which is not recommended for production deployments, use the following configuration:

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

    2. Install the MongoDB packages and associated tools.

    To install the latest stable version of MongoDB, issue the following command:

    sudo yum install -y mongodb-org
    

    3. Start MongoDB

    sudo service mongod start
    

    You can optionally ensure that MongoDB will start following a system reboot by issuing the following command:

    sudo chkconfig mongod on
    

    4. Stop MongoDB

    sudo service mongod stop
    

    5. Restart MongoDB

    sudo service mongod restart
    

    6.modify /etc/mongo.conf

    change
    bind_ip=127.0.0.1
    to
    bind_ip=0.0.0.0
    
  • 相关阅读:
    notepad++的使用
    windows下的ubuntu
    VMware Tools安装
    Terminal命令
    Linux文件操作
    vim学习
    Windows桌面美化
    求解移动字符串问题
    求解回文序列问题
    用Git命令把本地项目,提交到远程仓库
  • 原文地址:https://www.cnblogs.com/wardensky/p/4289659.html
Copyright © 2011-2022 走看看