1.创建mongo repo源
1
vim /etc/yum.repos.d/mongodb.repo
2.把下面的内容复制到文件中 保存退出
1
2
3
4
5
[mongodb-org]
name=MongoDB Repository
baseurl=http://mirrors.aliyun.com/mongodb/yum/redhat/$releasever/mongodb-org/5.0/x86_64/
gpgcheck=0
enabled=1
3.安装mongo
1
yum -y install mongodb-org
4.修改 mongod.conf 配置文件
1
vim /etc/mongod.conf
5.启动mongo
启动mongodb :
1
systemctl start mongod.service
停止mongodb :
1
systemctl stop mongod.service
查到mongodb的状态:
1
systemctl status mongod.service
添加到开机启动:
1
systemctl enable mongod.service