【Linux-MongoDB】linux环境搭建MongoDB方式二

Linux-MongoDB环境搭建方式二(yum)

1.配置yum

#1.编辑如下文件
vi /etc/yum.repos.d/mongodb-org-4.0.repo
#2.新增文件内容(阿里云的yum源)
[mongodb‐org]
name=MongoDB Repository
baseurl=http://mirrors.aliyun.com/mongodb/yum/redhat/7Server/mongodb-org/4.0/x86_64/
gpgcheck=0
enabled=1

2.安装MongoDB

#1.执行安装命令,等待安装即可
yum -y install mongodb-org
#2.查看mongo的安装位置(使用linux自带命令如下)
whereis mongod
#3.修改配置文件
vim /etc/mongod.conf
#4.修改内容如下:
bindIp: 172.0.0.1  改为 bindIp: 0.0.0.0

3.启动MongoDB

#1.启动mongodb:
systemctl start mongod.service
#2.停止mongodb:
systemctl stop mongod.service
#3.重启mongodb:
systemctl restart mongod.service
#4.查看mongodb:
systemctl status mongod.service
#5.设置mongodb开机自启动:
systemctl enable mongod.service

【Linux-MongoDB】linux环境搭建MongoDB方式二_第1张图片

你可能感兴趣的:(Linux环境文档,mongodb,linux,数据库)