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
文章信息
- 文章标题:CentOS 安装 MongoDB - Keystion
- 文章链接:https://webclown.net/posts/Centos-安装-MongoDB.html
- 版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。
- 转载请注明来自 Keystion !
markdown
[CentOS 安装 MongoDB - Keystion](https://webclown.net/posts/Centos-安装-MongoDB.html)