+1 vote
113 views
in Cloud by
Recently, I upgraded the elastic search version to the latest, but after the same, the search function stops working.

 The connection is okay and services are running without any issues, I am not able to find the cause and am stuck, any help will be muchly appreciable

1 Answer

+2 votes
by
 
Best answer

Since you have upgraded the elastic search to the latest, the existing index will not work due to compatibility issues, it is recommended that you redo the indexes.

The below commands will do the work
 

./pro/pro.py search --clear
 ./pro/pro.py search --update

Here is the reference documentation:
https://manual.seafile.com/deploy_pro/details_about_file_search/#common-problems

...