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 

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/1145.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论