mongodb快速上手

mongodb作为非关系型数据库,存储的数据类JSON数据结构

1. 下载安装

# 下载
curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-4.0.0.tgz
# 解压
tar -zxvf mongodb-linux-x86_64-4.0.0.tgz

2. 启动服务

# 添加环境变量
export PATH=/bin:$PATH
# 使用默认配置启动服务器, 查看帮助(mongod --help)
mongod

3. shell基本操作

# 连接shell,查看帮助(mongo --help)
> mongo

# 查看所有数据库
show dbs

# 创建和使用数据库
use testdb

# 查看testdb下的所有表(集合 collection)
show collections

# 数据库的CRUD
db.collection.insertOne()
db.collection.insertMany([...])

db.collection.find()

db.collection.updateOne(, )
db.collection.updateMany(, )
db.collection.replaceOne(, )

db.collection.deleteOne()
db.collection.deleteMany()

# 退出shell
exit

4. 添加用户权限

4.1 添加配置文件

# 配置文件: vim /data/mongo.conf
dbpath=/data/db
logpath=/data/mongo.log
logappend=true
port=27017
# bind_ip=0.0.0.0 # 设置外网可连接
# auth=true       # 开启身份认证
# fork=true      # linux后台启动,window无此项,需要install=true和其他配置

4.2 启动服务

# --config 指定配置文件
mongod --config /data/mongo.conf

4.2 新增用户和数据库权限

> mongo
use 
db.createUser({user:"mememe",pwd:"123456",roles:[{ role: "readWrite", db: "" }]})

4.3 修改配置文件

# 修改配置文件: vim /data/mongo.conf
dbpath=/data/db
logpath=/data/mongo.log
logappend=true
port=27017
bind_ip=0.0.0.0  # 设置外网可连接
auth=true   # 开启身份认证
fork=true     # linux后台启动

4.4 重启mongod服务

# ps -ef  # 查看刚才启动的mongod服务pid
# kill   # 关闭进程
# 启动mongod服务
mongod --config /data/mongo.conf

5.远程连接

# mongo :/ -u  -p 
mongo 128.14.25.36:27017/test -u mememe -p 123456

6. 简单总结

以上为mongodb的基本操作,以快速上手为目的,更多操作和细节请查看--help和查看官方文档mongodb docs

你可能感兴趣的:(mongodb快速上手)