Skip to content

CentOS 安装 MongoDB

发表于:

文章分类:tech

文章标签:CentOSMongoDB

阅读量:

1. 配置安装源

bash
vi /etc/yum.repos.d/mongodb-org-3.4.repo

添加内容

bash
[mongodb-org-3.4]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.4/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-3.4.asc

安装

bash
yum install -y mongodb-org

设置可连接IP

bash
vi /etc/mongod.conf

找到以下代码片段:

bash
# network interfaces
net:
  port: 27017
  bindIp: 127.0.0.1  # Listen to local interface only, comment to listen on all interfaces.

修改 bindIp 为:

bash
  bindIp: 0.0.0.0

0.0.0.0 为所以 IP 均可连接。

管理

开启:service mongod start 关闭:service mongod stop 重启:service mongod restart 运行中重启:service mongod try-restart 它只会在服务已经在运行中的时候重启服务。 重新加载:service mongod reload 强制重新加载:service mongod force-reload 状态:service mongod status

上一篇
下一篇
总访问量:-