面向集合存儲(chǔ),易存儲(chǔ)對(duì)象類型的數(shù)據(jù)。
成都創(chuàng)新互聯(lián)專注于合肥網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供合肥營銷型網(wǎng)站建設(shè),合肥網(wǎng)站制作、合肥網(wǎng)頁設(shè)計(jì)、合肥網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造合肥網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供合肥網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
模式自由。
支持動(dòng)態(tài)查詢。
支持完全索引,包含內(nèi)部對(duì)象。
支持查詢。
支持復(fù)制和故障恢復(fù)。
使用高效的二進(jìn)制數(shù)據(jù)存儲(chǔ),包括大型對(duì)象(如視頻等)。
自動(dòng)處理碎片,以支持云計(jì)算層次的擴(kuò)展性。
支持RUBY,PYTHON,JAVA,C++,PHP,C#等多種語言。
文件存儲(chǔ)格式為BSON(一種JSON的擴(kuò)展)。
vim /etc/yum.repos.d/mongodb-org.repo
[mongodb-org]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.6/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-3.6.as
yum install -y mongodb-org
systemctl start mongod.service #開啟服務(wù)
systemctl start mongod.service #開啟服務(wù)
[root@localhost ~]# mongo #進(jìn)入數(shù)據(jù)庫
MongoDB shell version v3.6.6
connecting to: mongodb://127.0.0.1:27017
MongoDB server version: 3.6.6
cp -p /etc/mongod.conf /etc/mongod2.conf
vim /etc/mongodb2.conf
systemLog:
destination: file
logAppend: true
path: /data/logs/mongod2.log #日志文件位置
.....
storage:
dbPath: /data/mongodb/mongodb2 #數(shù)據(jù)文件位置
journal:
......
net:
port: 27018 #修改端口號(hào)
bindIp: 127.0.0.1
mkdir -p /data/mongodb/mongodb2 #創(chuàng)建數(shù)據(jù)文件位置
mkdir -p /data/logs/ #創(chuàng)建日志文件位置
touch /data/logs/mongodb2.log #創(chuàng)建日志文件
chmod -R 777 /data/logs/mongodb2.log #添加日志文件的權(quán)限
[root@localhost ~]# mongod -f /etc/mongod2.conf #開啟實(shí)例
about to fork child process, waiting until server is ready for connections.
forked process: 23824
child process started successfully, parent exiting
[root@localhost ~]# mongo --port 27018 #進(jìn)入實(shí)例
MongoDB shell version v3.6.6
connecting to: mongodb://127.0.0.1:27018/
MongoDB server version: 3.6.6
[root@localhost ~]# mongod -f /etc/mongod2.conf --shutdown #關(guān)閉實(shí)例
killing process with pid: 23824
操作 | 描述 |
---|---|
show dbs | 查看當(dāng)前實(shí)例下的數(shù)據(jù)庫列表 |
show users | 顯示用戶 |
use |
切換當(dāng)前數(shù)據(jù)庫 |
db.help() | 顯示數(shù)據(jù)庫操作命令 |
show collections | 顯示當(dāng)前數(shù)據(jù)庫集合 |
db.foo.help() | 顯示集合操作命令,foo 是當(dāng)前數(shù)據(jù)庫下的集合 |
db.foo.find() | 對(duì)當(dāng)前數(shù)據(jù)庫中foo集合進(jìn)行數(shù)據(jù)查找 |
格式 : use DATABASE_NAME #切換數(shù)據(jù)庫如果有切換,沒有創(chuàng)建
mongos> use abc
switched to db abc
格式 : db.dropDatabase() #刪除數(shù)據(jù)庫
mongos> use abc
switched to db abc
mongos> db.dropDatabase()
{ "info" : "database does not exist", "ok" : 1 }
mongos> db.test.insert({"id":1,"name":"zhangsan"}) #在test集合插入數(shù)據(jù) 沒有test集合默認(rèn)會(huì)自動(dòng)創(chuàng)建
WriteResult({ "nInserted" : 1 })
mongos> db.test.insert({"id":2,"name":"lisi"})
WriteResult({ "nInserted" : 1 })
mongos> db.test.find() #查看集合內(nèi)容
{ "_id" : ObjectId("5b4eb95659122739e2695613"), "id" : 1, "name" : "zhangsan" }
{ "_id" : ObjectId("5b4eb96759122739e2695614"), "id" : 2, "name" : "lisi" }
mongos> db.test.remove({"id":1}) #刪除test集合中的id為1的數(shù)據(jù)
WriteResult({ "nRemoved" : 1 })
mongos> db.test.find()
{ "_id" : ObjectId("5b4eb96759122739e2695614"), "id" : 2, "name" : "lisi" }
mongos> db.test.update({"id":2},{$set:{"name":"wangwu"}}) #修改數(shù)據(jù)
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
mongos> db.test.find()
{ "_id" : ObjectId("5b4eb96759122739e2695614"), "id" : 2, "name" : "wangwu" }
[root@localhost bin]# ./mongoexport -d abc -c test -o /opt/test.json #導(dǎo)出文件格式為json
2018-07-18T12:07:50.297+0800 connected to: localhost
2018-07-18T12:07:50.299+0800 exported 2 records
[root@localhost bin]# ./mongoimport -d abc -c test --file test.json #導(dǎo)入數(shù)據(jù)庫
2018-07-18T12:09:09.880+0800 Failed: open test.json: no such file or directory
2018-07-18T12:09:09.881+0800 imported 0 documents