centos7 安装mongodb-4.0.2

环境:
阿里云学生机ECS

  1. 官网下载
    https://www.mongodb.com/download-center#production
    centos7 安装mongodb-4.0.2_第1张图片

wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-4.0.2.tgz

  1. 创建配置文件

tar -zxf mongodb-linux-x86_64-rhel70-4.0.2.tgz
mv mongodb-linux-x86_64-rhel70-4.0.2.tgz /usr/local/mongodb-4.0.2
cd /usr/local/mongodb-4.0.2/
mkdir -p data
mkdir -p log
centos7 安装mongodb-4.0.2_第2张图片
mongo.conf 配置内容
centos7 安装mongodb-4.0.2_第3张图片

  1. 启动mongodb服务

./bin/mongod --config mongo.conf

在这里插入图片描述

  1. 登录客户端

./bin/mongo(没有开启认证)

centos7 安装mongodb-4.0.2_第4张图片

show dbs

centos7 安装mongodb-4.0.2_第5张图片

  1. 创建用户

use admin
db.createUser({user:“test”,pwd:“test”,roles:[{role:“root”,db:“admin”}]});
db.shutdownServer();

  1. 认证登录客户端
    修改mongo.conf中auth=true
    按上面步骤启动服务端登录客户端,如下图提示未认证
    centos7 安装mongodb-4.0.2_第6张图片

这时候需要验证登录

./bin/mongo -u “test” -p “test” --authenticationDatabase “admin”

  1. 远程客户端连接(Robo 3T)
    修改配置文件:
    bind_ip=0.0.0.0#绑定ip(用于远程访问,默认127.0.0.1)
    centos7 安装mongodb-4.0.2_第7张图片

你可能感兴趣的:(linux)