MongoDB部署及使用指南

MongoDB部署

系统环境:CentOS7   下载地址:http://mirrors.163.com/centos/7.6.1810/isos/x86_64/CentOS-7-x86_64-DVD-1810.iso

MongoDB安装包版本:4.0.5  下载地址:https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-4.0.5.tgz

在CentOS上安装软件基本就是一些命令,以下列出所使用的命令:

1、关闭防火墙

systemctl stop firewalld.service

systemctl disable firewalld.service

2、上传安装包并解压

tar zxvf mongodb-linux-x86_64-rhel70-4.0.5.tgz

3、剪切到/usr/local下

mv mongodb-linux-x86_64-rhel70-4.0.5 /usr/local/mongodb

4、创建MongoDB相应的文件夹

mkdir -p /data/db

mkdir -p /data/log

mkdir -p /data/conf 在当前文件夹下创建一个配置文件mongodb.conf,内容如下:

1 dbpath=/data/db
2 #logpath=/data/log/mongodb.log
3 bind_ip=0.0.0.0
4 port=27017

5、进入/usr/local/mongodb/bin目前启动MongoDB

./mongod --config /data/conf/mongodb.conf

6、用浏览器访问如出现如下即为安装成功

MongoDB使用指南

如下为我在本地创建的集合:

如下为经常会使用到的查询语句:

 1 //查询姓名为小小的数据
 2 
 3 db.getCollection('student').find({"name":"xiaoxiao"})
 4 
 5 //并列查询and
 6 
 7 db.getCollection('student').find({"name":"xiaoxiao","age":29})
 8 
 9 //查询age小于29
10 
11 db.getCollection('student').find({"age":{$lt:29}})
12 
13 //或查询语句
14 
15 db.getCollection('student').find({$or:[{"age":28},{"age":30}]})
16 
17 //limit查询
18 
19 db.getCollection('student').find({}).limit(2)
20 
21 //skip跳过前两条进行 查询
22 
23 db.getCollection('student').find({}).skip(2)
24 
25 //按age字段进行升序排序(1),降序排序(-1)
26 
27 db.getCollection('student').find({}).sort({"age":1})
28 
29 //模糊查询name值带有xiao(类似于SQL中的like)
30 
31 db.getCollection('student').find({"name":{"$regex":"xiao"}})

猜你喜欢

转载自www.cnblogs.com/hanxiaobei/p/10339311.html