标签:火墙 pos check iptable yum static ffffff 安装 51cto
1.配置MongoDB的yum源创建yum源文件:
vim /etc/yum.repos.d/mongodb-org-3.6.repo
添加以下内容:
[mongodb-org-3.6]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.6/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-3.6.asc
2.安装MongoDB
安装命令:
yum -y install mongodb-org
安装完成后,查看mongo安装位置 whereis mongod
3.启动MongoDB
启动mongodb :systemctl start mongod.service
停止mongodb :systemctl stop mongod.service
4.外网访问需要关闭防火墙:
CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。
关闭firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
5.设置开机启动
systemctl enable mongod.service
6.设置mongodb远程访问:
编辑mongod.conf注释bindIp,并重启mongodb.
vim /etc/mongod.conf
标签:火墙 pos check iptable yum static ffffff 安装 51cto
原文地址:http://blog.51cto.com/xiaok007/2068851