Force kickoff of Solr indexing at install time

This commit is contained in:
Jeff Volkenant 2019-01-16 11:32:16 -08:00
parent 4a23a522e1
commit 2303ac3394
1 changed files with 15 additions and 0 deletions

View File

@ -61,3 +61,18 @@ chmod -R o-rwx /etc/dovecot
# Restart services to reload solr schema & dovecot plugins
restart_service tomcat8
restart_service dovecot
# Kickoff building the index
# Per doveadm-fts manpage: Scan what mails exist in the full text search index
# and compare those to what actually exist in mailboxes.
# This removes mails from the index that have already been expunged and makes
# sure that the next doveadm index will index all the missing mails (if any).
doveadm fts rescan -A
# Adds unindexed files to the fts database
# * `-q`: Queues the indexing to be run by indexer process. (will background the indexing)
# * `-A`: All users
# * `'*'`: All folders
doveadm index -q -A '*'