You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
elasticsearch_1 | [1]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
81
81
```
82
82
83
83
Solution
84
84
85
85
Increase the kernel `max_map_count` parameter of vm using the following command.
86
-
```
87
-
sudo sysctl -w vm.max_map_count=262144
86
+
```console
87
+
$ sudo sysctl -w vm.max_map_count=262144
88
88
```
89
89
90
90
Now stop the container services and re-run `docker-compose up`. Note that this
91
91
is valid only for current session. To set this value permanently, update the
92
92
`vm.max_map_count` setting in `/etc/sysctl.conf` file. To verify after
93
93
rebooting, run the below command.
94
-
```
94
+
```console
95
95
$ sysctl vm.max_map_count
96
96
```
97
97
@@ -108,7 +108,7 @@ curl: (52) Empty reply from server
108
108
Diagnosis
109
109
110
110
Check for the following log in the output of `docker-compose up`
111
-
```
111
+
```console
112
112
elasticsearch_1 | [2020-03-12T13:05:34,959][WARN ][c.f.s.h.SearchGuardHttpServerTransport] [Xrb6LcS] Someone (/172.18.0.1:59838) speaks http plaintext instead of ssl, will close the channel
113
113
```
114
114
@@ -121,11 +121,11 @@ $ sudo lsof -i:5888
121
121
Solution
122
122
123
123
1. Try to close the conflicting processes. You can do this easily with fuser
124
-
```
124
+
```console
125
125
$ sudo apt-get install fuser
126
126
```
127
127
Run the below command (assuming 5888 is the port number)
128
-
```
128
+
```console
129
129
$ fuser -k 58888/tcp
130
130
```
131
131
Re-run `docker-compose up` and check if `localhost:9200` shows up.'
@@ -145,7 +145,7 @@ Can't create indices in Kibana. Nothing happens after clicking create index.
145
145
Diagnosis
146
146
147
147
Check for the following log in the output of `docker-compose up`
148
-
```
148
+
```console
149
149
elasticsearch_1 |[INFO ][c.f.s.c.PrivilegesEvaluator] No index-level perm match for User [name=readall, roles=[readall], requestedTenant=null] [IndexType [index=.kibana, type=doc]] [Action [[indices:data/write/index]]] [RolesChecked [sg_own_index, sg_readall]]
150
150
elasticsearch_1 | [c.f.s.c.PrivilegesEvaluator] No permissions for {sg_own_index=[IndexType [index=.kibana, type=doc]], sg_readall=[IndexType [index=.kibana, type=doc]]}
[git] Problem executing study enrich_areas_of_code:git, RequestError(400, 'search_phase_execution_exception', 'No mapping found for [metadata__timestamp] in order to sort on')
175
175
```
176
176
@@ -185,7 +185,7 @@ There are 2 solutions to this problem:
0 commit comments