@@ -100,9 +100,22 @@ using `Zammad hosting`_ for your and your customers' safety.
100
100
ingest-attachment is no longer a plugin, it's now included in
101
101
Elasticsearch).
102
102
103
- Step 6: Log into Zammad
103
+ Step 6: Rebuild Elasticsearch index (optional)
104
+ Only needed if the release note tells you to rebuild the Elasticsearch
105
+ index.
106
+
107
+ .. code-block :: sh
108
+
109
+ $ zammad run rake zammad:searchindex:rebuild
110
+
111
+ # Optionally, you can specify a number of CPU cores which are used for
112
+ # rebuilding the searchindex, as in the following example with 8 cores:
113
+ $ zammad run rake zammad:searchindex:rebuild[8]
114
+
115
+ Step 7: Log into Zammad
104
116
Yes, that's it!
105
117
118
+
106
119
.. tab :: Source
107
120
108
121
Step 1: Ensure dependencies
@@ -186,9 +199,22 @@ using `Zammad hosting`_ for your and your customers' safety.
186
199
Step 9: Start Zammad services
187
200
Start the application server, web socket server and scheduler.
188
201
189
- Step 10: Log into Zammad
202
+ Step 10: Rebuild Elasticsearch index (optional)
203
+ Only needed if the release note tells you to rebuild the Elasticsearch
204
+ index.
205
+
206
+ .. code-block :: sh
207
+
208
+ $ rake zammad:searchindex:rebuild
209
+
210
+ # Optionally, you can specify a number of CPU cores which are used for
211
+ # rebuilding the searchindex, as in the following example with 8 cores:
212
+ $ rake zammad:searchindex:rebuild[8]
213
+
214
+ Step 11: Log into Zammad
190
215
Yes, that's it!
191
216
217
+
192
218
.. tab :: Docker
193
219
194
220
.. hint ::
@@ -212,3 +238,30 @@ using `Zammad hosting`_ for your and your customers' safety.
212
238
$ docker-compose pull
213
239
$ docker-compose up -d
214
240
241
+ Rebuild Elasticsearch index (optional)
242
+ Only needed if the release note tells you to rebuild the Elasticsearch
243
+ index.
244
+
245
+ **Docker compose: **
246
+
247
+ .. code-block :: sh
248
+
249
+ $ docker compose run --rm zammad-railsserver rails r rake zammad:searchindex:rebuild
250
+
251
+ # Optionally, you can specify a number of CPU cores which are used for
252
+ # rebuilding the searchindex, as in the following example with 8 cores:
253
+ $ docker compose run --rm zammad-railsserver rails r rake zammad:searchindex:rebuild[8]
254
+
255
+ **Portainer: **
256
+
257
+ Open the :ref: `console via Portainer's GUI <docker-run-commands >`
258
+ (but use the entrypoint ``bash-via-entrypoint: /docker-entrypoint.sh /bin/bash ``
259
+ instead) and run:
260
+
261
+ .. code-block :: sh
262
+
263
+ $ rake zammad:searchindex:rebuild
264
+
265
+ # Optionally, you can specify a number of CPU cores which are used for
266
+ # rebuilding the searchindex, as in the following example with 8 cores:
267
+ $ rake zammad:searchindex:rebuild[8]
0 commit comments