CentOS7安装MongoDB
Posted coderun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7安装MongoDB相关的知识,希望对你有一定的参考价值。
参考 MongoDB 官方网站:https://docs.mongodb.com/manual/tutorial/install-mongodb-enterprise-on-red-hat/
1.配置 yum 源
- 创建yum源文件
touch /etc/yum.repos.d/mongodb-enterprise.repo
- 修改配置文件
vim /etc/yum.repos.d/mongodb-enterprise.repo
[mongodb-enterprise] name=MongoDB Enterprise Repository baseurl=https://repo.mongodb.com/yum/redhat/$releasever/mongodb-enterprise/4.0/$basearch/ gpgcheck=1 enabled=1 gpgkey=https://www.mongodb.org/static/pgp/server-4.0.asc
2.使用 yum 安装MongoDB
yum install -y mongodb-enterprise
3.配置SELinux
- 安装semanage命令
yum -y install policycoreutils-python
- 如果SELinux处于
enforcing
模式,则启用对MongoDB部署将使用的相关端口的访问(例如27017
)
semanage port -a -t mongod_port_t -p tcp 27017
- 将
SELINUX配置文件
设置为disabled 模式,禁用SELinux
vim /etc/selinux/config
SELINUX=disabled
- 将SELinux配置文件设置为
permissive 模式,解除限制
vim /etc/selinux/config
SELINUX=permissive
4.MongoDB的使用
- 启用/停止/重启 MongoDB 服务
systemctl start mongod.service
systemctl stop mongod.service
systemctl restart mongod.service
参考:https://www.cnblogs.com/xiaoerjun/p/9841987.html
以上是关于CentOS7安装MongoDB的主要内容,如果未能解决你的问题,请参考以下文章