本文基于centos6安装mongod 3

添加repo

vim /etc/yum.repos.d/mongodb-org-3.6.repo

1
2
3
4
5
6
[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

安装

1
sudo yum install -y mongodb-org

开放端口

SELinux

如果安装了SELinux

1
semanage port -a -t mongod_port_t -p tcp 27017

或者直接关闭 /etc/selinux/config

1
SELINUX=disabled

mongodb配置绑定ip

默认绑定端口为本机,可以指定ip,也可以开放所有。下面开放所有

vim /etc/mongod.conf

1
2
3
net:
port: 27017
bindIp: 0.0.0.0

如果指定ip

1
2
3
net:
port: 27017
bindIp: 127.0.0.1,192.168.1.100

重启

1
service mongod restart

centos6开放ip端口

vim /etc/sysconfig/iptables 添加

1
-A INPUT -p tcp -m tcp --dport 27017 -j ACCEPT

重启

1
service iptables restart

测试启动

启动

1
sudo service mongod start

重启

1
sudo service mongod restart

本机连接

1
mongo

远程连接

1
mongo --host 192.168.2.125:27017

查看db

1
2
3
4
> show dbs;
admin 0.000GB
config 0.000GB
local 0.000GB

进入db

1
2
> use config
switched to db config

查看当前db

1
2
> db
config

查看集合

1
2
> show collections
system.sessions

参考

http://www.cnblogs.com/woshimrf/p/5503228.html

https://docs.mongodb.com/manual/tutorial/install-mongodb-on-red-hat/