-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmongodb
56 lines (45 loc) · 2.33 KB
/
mongodb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
2018-05-14T04:45:06.659+0800 W CONTROL [main] 32-bit servers don't have journa
ing enabled by default. Please use --journal if you want durability.
2018-05-14T04:45:06.660+0800 I CONTROL [main]
2018-05-14T04:45:06.667+0800 I CONTROL [main] Hotfix KB2731284 or later update
is not installed, will zero-out data files
2018-05-14T04:45:06.672+0800 I CONTROL [initandlisten] MongoDB starting : pid=
204 port=27017 dbpath=D:/Program Files/mongodb/data 32-bit host=SKY-20180209SVB
2018-05-14T04:45:06.672+0800 I CONTROL [initandlisten] targetMinOS: Windows Vi
ta/Windows Server 2008
2018-05-14T04:45:06.673+0800 I CONTROL [initandlisten] db version v3.2.20
2018-05-14T04:45:06.673+0800 I CONTROL [initandlisten] git version: a7a144f40b
0bfe290906eb33ff2714933544af8
2018-05-14T04:45:06.673+0800 I CONTROL [initandlisten] allocator: tcmalloc
2018-05-14T04:45:06.673+0800 I CONTROL [initandlisten] modules: none
2018-05-14T04:45:06.673+0800 I CONTROL [initandlisten] build environment:
2018-05-14T04:45:06.673+0800 I CONTROL [initandlisten] distarch: i386
2018-05-14T04:45:06.673+0800 I CONTROL [initandlisten] target_arch: i386
2018-05-14T04:45:06.674+0800 I CONTROL [initandlisten] options: { storage: { d
Path: "D:/Program Files/mongodb/data" } }
2018-05-14T04:45:06.675+0800 I STORAGE [initandlisten] exception in initAndLis
en: 28663 Cannot start server. The default storage engine 'wiredTiger' is not a
ailable with this build of mongod. Please specify a different storage engine ex
licitly, e.g. --storageEngine=mmapv1., terminating
2018-05-14T04:45:06.675+0800 I CONTROL [initandlisten] dbexit: rc: 100
mongod --dbpath="D:/Program Files/mongodb/data" --storageEngine=mmapv1 --journal
mongod --logpath "D:/Program Files/mongodb/log/MongoDB6666.log" --dbpath "D:/Program Files/mongodb/data" --install --serviceName "mongoDB" --journal
#nosql manager for mongodb
# create new collection
db.articles.insert({"title": "Hello World"})
# create index on
db.articles.createIndex({"created_at": 1})
db.articles.find({})
db.articles.findOne()
db.articles.find().pretty() 美化显示出来
> cmdCount = 1;
1
> prompt = function () {}
function () {}
> prompt = function () {
... return (cmdCount ++) + "> ";
... }
function () {
return (cmdCount ++) + "> ";
}
注意: 写方法时候 换行,回出现 ... 在行的开头