-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitES.sh
62 lines (59 loc) · 1.37 KB
/
initES.sh
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
57
58
59
60
61
curl -XPUT localhost:9200/logindata
curl -XPUT -H 'Content-Type: application/json' localhost:9200/logindata\_settings -d '
{
"index.refresh_interval": "60s",
"index.number_of_replicas": "0"
}
'
curl -XPOST -H 'Content-Type: application/json' localhost:9200/logindata/_mapping/login -d '
{
"login":{
"properties":{
"country":{
"type":"text",
"fields":{
"keyword":{
"type":"keyword",
"ignore_above":256
}
}
},
"ipaddress":{
"type":"ip"
},
"location":{
"type":"geo_point"
},
"login_date":{
"type":"date"
},
"sellerid":{
"type":"text",
"fields":{
"keyword":{
"type":"keyword",
"ignore_above":256
}
}
},
"userloginid":{
"type":"text",
"fields":{
"keyword":{
"type":"keyword",
"ignore_above":256
}
}
},
"userlogintype":{
"type":"text",
"fields":{
"keyword":{
"type":"keyword",
"ignore_above":256
}
}
}
}
}
}'