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
# Edit ELASTICSEARCH_URL and SECRET_REGISTER (random string to secure registration)
82
-
# If Elasticsearch security features are enabled, add -e "ELASTICSEARCH_USERNAME=xxxxx" -e "ELASTICSEARCH_PASSWORD=xxxxx"
83
80
```
84
81
82
+
Edit ```ELASTICSEARCH_URL``` and ```SECRET_REGISTER``` (random string to secure registration)
83
+
84
+
If Elasticsearch security features are enabled, add ```-e "ELASTICSEARCH_USERNAME=xxxxx" -e "ELASTICSEARCH_PASSWORD=xxxxx"``` or ```-e "ELASTICSEARCH_API_KEY=xxxxx"```
85
+
85
86
### Build and run elasticsearch-admin with source installation
# Edit ELASTICSEARCH_URL and SECRET_REGISTER (random string to secure registration)
95
-
# If Elasticsearch security features are enabled, add -e "ELASTICSEARCH_USERNAME=xxxxx" -e "ELASTICSEARCH_PASSWORD=xxxxx"
96
94
````
97
95
96
+
Edit ```ELASTICSEARCH_URL``` and ```SECRET_REGISTER``` (random string to secure registration)
97
+
98
+
If Elasticsearch security features are enabled, add ```-e "ELASTICSEARCH_USERNAME=xxxxx" -e "ELASTICSEARCH_PASSWORD=xxxxx"``` or ```-e "ELASTICSEARCH_API_KEY=xxxxx"```
99
+
98
100
### /etc/hosts
99
101
100
102
```
@@ -136,6 +138,7 @@ docker run -e "ELASTICSEARCH_URL=http://x.x.x.x:9200" -e "SECRET_REGISTER=xxxxx"
136
138
SetEnv ELASTICSEARCH_URL http://x.x.x.x:500
137
139
SetEnv ELASTICSEARCH_USERNAME elastic
138
140
SetEnv ELASTICSEARCH_PASSWORD changeme
141
+
SetEnv ELASTICSEARCH_API_KEY
139
142
</VirtualHost>
140
143
141
144
<VirtualHost *:80>
@@ -147,6 +150,7 @@ docker run -e "ELASTICSEARCH_URL=http://x.x.x.x:9200" -e "SECRET_REGISTER=xxxxx"
147
150
SetEnv ELASTICSEARCH_URL http://x.x.x.x:600
148
151
SetEnv ELASTICSEARCH_USERNAME elastic
149
152
SetEnv ELASTICSEARCH_PASSWORD changeme
153
+
SetEnv ELASTICSEARCH_API_KEY
150
154
</VirtualHost>
151
155
152
156
<VirtualHost *:80>
@@ -158,6 +162,7 @@ docker run -e "ELASTICSEARCH_URL=http://x.x.x.x:9200" -e "SECRET_REGISTER=xxxxx"
158
162
SetEnv ELASTICSEARCH_URL http://x.x.x.x:700
159
163
SetEnv ELASTICSEARCH_USERNAME elastic
160
164
SetEnv ELASTICSEARCH_PASSWORD changeme
165
+
SetEnv ELASTICSEARCH_API_KEY
161
166
</VirtualHost>
162
167
163
168
<VirtualHost *:80>
@@ -169,5 +174,6 @@ docker run -e "ELASTICSEARCH_URL=http://x.x.x.x:9200" -e "SECRET_REGISTER=xxxxx"
- Connection to Elasticsearch: server-side (no CORS issue), private or public, local or remote, http or https, credentials or not
40
+
- Connection to Elasticsearch: server-side (no CORS issue), private or public, local or remote, http or https, authorization with user/password or API key
- Notifications (Push API, Email, Slack Incoming Webhook, Microsoft Teams Incoming Webhook) about cluster health, node up, node down, disk threshold, license expiration, ES version
@@ -129,7 +129,7 @@ docker run -e "ELASTICSEARCH_URL=http://x.x.x.x:9200" -e "SECRET_REGISTER=xxxxx"
129
129
130
130
Edit ```ELASTICSEARCH_URL``` and ```SECRET_REGISTER``` (random string to secure registration)
131
131
132
-
If Elasticsearch security features are enabled, add ```-e "ELASTICSEARCH_USERNAME=xxxxx" -e "ELASTICSEARCH_PASSWORD=xxxxx"```
132
+
If Elasticsearch security features are enabled, add ```-e "ELASTICSEARCH_USERNAME=xxxxx" -e "ELASTICSEARCH_PASSWORD=xxxxx"``` or ```-e "ELASTICSEARCH_API_KEY=xxxxx"```
133
133
134
134
If you have SSL certificates, add ```-v /path/privkey.pem:/etc/nginx/privkey.pem -v /path/fullchain.pem:/etc/nginx/fullchain.pem```
135
135
@@ -263,7 +263,7 @@ cp .env.dist .env
263
263
264
264
In the ```.env``` file edit ```ELASTICSEARCH_URL``` and ```SECRET_REGISTER``` (random string to secure registration)
265
265
266
-
If Elasticsearch security features are enabled, edit ```ELASTICSEARCH_USERNAME``` and ```ELASTICSEARCH_PASSWORD```
266
+
If Elasticsearch security features are enabled, edit ```ELASTICSEARCH_USERNAME``` and ```ELASTICSEARCH_PASSWORD``` or ```-e "ELASTICSEARCH_API_KEY=xxxxx"```
267
267
268
268
You can also edit ```VAPID_PUBLIC_KEY``` and ```VAPID_PRIVATE_KEY``` to use push notifications (only in HTTPS)
0 commit comments